.cctv-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
}

.cctv-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: separate;
    border-spacing: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.cctv-table th {
    background: #dc3545;
    color: #fff;
    padding: 16px 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.cctv-table th:last-child {
    border-right: none;
}

.cctv-table td {
    padding: 15px 14px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: middle;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.cctv-table td:last-child {
    border-right: none;
}

.cctv-table tbody tr:last-child td {
    border-bottom: none;
}

.cctv-table tbody tr:nth-child(even) {
    background: #fff;
}

.cctv-table td:first-child {
    color: #212529;
    font-weight: 700;
    white-space: nowrap;
}


.cctv-table .check {
    color: #dc3545;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* Scrollbar */
.cctv-table-wrapper::-webkit-scrollbar {
    height: 7px;
}

.cctv-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cctv-table-wrapper::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 10px;
}


/* Mobile */
@media (max-width: 767px) {
    .cctv-table-wrapper {
        margin: 20px 0;
    }

    .cctv-table {
        min-width: 1000px;
    }

    .cctv-table th {
        padding: 13px 12px;
        font-size: 13px;
    }

    .cctv-table td {
        padding: 12px;
        font-size: 13px;
    }
}



.timeline-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.timeline-item{
    position: relative;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px 20px;
    width: 190px;
    min-height: 216px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.timeline-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(248,71,71,0.18);
}

.timeline-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f84747 0%, #d02525 100.08%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 12px 25px rgba(248,71,71,0.35);
    position: relative;
    flex-shrink: 0;
}

.timeline-icon::after{
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(248,71,71,0.35);
}

.timeline-item h4{
    color: #222;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* Timeline Line */
.timeline-line{
    width: 60px;
    height: 4px;
    background: linear-gradient(180deg, #f84747 0%, #d02525 100.08%);
    border-radius: 50px;
}

.breadcrumb_button {
    width: 150px;
}



/* Laptop */
@media(max-width:1200px){

    .timeline-item{
        width: 170px;
    }

    .timeline-line{
        width: 40px;
    }
}

/* Tablet */
@media(max-width:991px){

    .timeline-container{
        gap: 8px;
    }

    .timeline-item{
        width: 150px;
        min-height: 240px;
        padding: 20px 15px;
    }

    .timeline-line{
        width: 25px;
    }

    .timeline-item h4{
        font-size: 15px;
    }
}

/* Mobile */
@media(max-width:767px){

    .timeline-container{
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .timeline-item{
        min-width: 220px;
        min-height: 230px;
        flex: 0 0 auto;
    }

    .timeline-line{
        min-width: 40px;
        flex: 0 0 auto;
    }

    /* Scrollbar */
    .timeline-container::-webkit-scrollbar{
        height: 6px;
    }

    .timeline-container::-webkit-scrollbar-thumb{
        background: #d02525;
        border-radius: 20px;
    }
}

