/* =========================================
BLOGTABLE - ADVANCED MODULAR CSS
All Styles Scoped with blogtable Prefix
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.blogtable-container *{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

.blogtable-container{
    position:relative;
    width:100%;
    max-width:1450px;
    margin:50px auto;
    padding:70px 40px;
    overflow:hidden;
    border-radius:32px;
    background:
    linear-gradient(135deg,#0f172a 0%, #111827 50%, #1e293b 100%);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
    font-family:'Poppins',sans-serif;
}

/* GLOW EFFECT */

.blogtable-glow{
    position:absolute;
    top:-120px;
    right:-100px;
    width:350px;
    height:350px;
    background:#06b6d4;
    filter:blur(140px);
    opacity:0.15;
    z-index:0;
}

/* HEADER */

.blogtable-header{
    position:relative;
    z-index:2;
    text-align:center;
    margin-bottom:50px;
}

.blogtable-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:60px;
    background:rgba(255,255,255,0.08);
    color:#67e8f9;
    font-size:13px;
    font-weight:600;
    letter-spacing:0.5px;
    margin-bottom:24px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

.blogtable-title{
    font-size:48px;
    line-height:1.2;
    color:#ffffff;
    font-weight:800;
    margin-bottom:24px;
}

.blogtable-description{
    max-width:900px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.9;
    font-size:16px;
}

/* BUTTON */

.blogtable-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:35px;
    padding:16px 36px;
    border-radius:60px;
    text-decoration:none;
    color:#ffffff;
    font-weight:600;
    font-size:15px;
    background:
    linear-gradient(135deg,#06b6d4,#2563eb);
    box-shadow:
    0 12px 30px rgba(37,99,235,0.35);
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
}

.blogtable-button:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:
    0 18px 40px rgba(6,182,212,0.45);
}

/* TABLE WRAPPER */

.blogtable-table-wrapper{
    position:relative;
    z-index:2;
    overflow-x:auto;
}

/* TABLE */

.blogtable-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 18px;
}

/* HEAD */

.blogtable-table thead th{
    padding:22px 24px;
    text-align:left;
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    background:
    linear-gradient(135deg,#0891b2,#2563eb);
    letter-spacing:0.4px;
    position:sticky;
    top:0;
    z-index:5;
}

.blogtable-table thead th:first-child{
    border-radius:20px 0 0 20px;
}

.blogtable-table thead th:last-child{
    border-radius:0 20px 20px 0;
}

/* BODY */

.blogtable-table tbody tr{
    transition:all 0.4s ease;
}

.blogtable-table tbody tr:hover{
    transform:translateY(-8px);
}

/* CELLS */

.blogtable-table tbody td{
    padding:28px 24px;
    color:#e2e8f0;
    line-height:1.9;
    font-size:15px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    border-top:1px solid rgba(255,255,255,0.06);
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:all 0.4s ease;
}

.blogtable-table tbody tr:hover td{
    background:rgba(255,255,255,0.08);
    box-shadow:
    0 14px 40px rgba(0,0,0,0.25);
}

.blogtable-table tbody td:first-child{
    border-radius:22px 0 0 22px;
}

.blogtable-table tbody td:last-child{
    border-radius:0 22px 22px 0;
}

/* INFO CARD */

.blogtable-info-card{
    display:flex;
    align-items:center;
    gap:18px;
    transition:all 0.4s ease;
}

.blogtable-table tbody tr:hover .blogtable-info-card{
    transform:translateX(8px);
}

/* ICON */

.blogtable-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    background:
    linear-gradient(135deg,#06b6d4,#2563eb);
    box-shadow:
    0 12px 28px rgba(37,99,235,0.3);
    transition:all 0.4s ease;
}

.blogtable-table tbody tr:hover .blogtable-icon{
    transform:rotate(8deg) scale(1.08);
}

/* CONTENT */

.blogtable-info-content h3{
    color:#ffffff;
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
}

.blogtable-info-content p{
    color:#94a3b8;
    font-size:13px;
    line-height:1.6;
}

/* SCROLLBAR */

.blogtable-table-wrapper::-webkit-scrollbar{
    height:10px;
}

.blogtable-table-wrapper::-webkit-scrollbar-track{
    background:#1e293b;
    border-radius:20px;
}

.blogtable-table-wrapper::-webkit-scrollbar-thumb{
    background:
    linear-gradient(135deg,#06b6d4,#2563eb);
    border-radius:20px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .blogtable-container{
        padding:50px 20px;
    }

    .blogtable-title{
        font-size:34px;
    }

    .blogtable-description{
        font-size:15px;
    }

    .blogtable-table thead{
        display:none;
    }

    .blogtable-table,
    .blogtable-table tbody,
    .blogtable-table tr,
    .blogtable-table td{
        display:block;
        width:100%;
    }

    .blogtable-table tr{
        margin-bottom:24px;
    }

    .blogtable-table td{
        border-radius:20px !important;
        margin-bottom:12px;
    }

    .blogtable-info-card{
        align-items:flex-start;
    }

}


/* =========================================
BLOGTABLE MOBILE RESPONSIVE OPTIMIZATION
========================================= */

@media screen and (max-width: 991px) {

    .blogtable-container{
        padding:45px 18px;
        border-radius:24px;
    }

    .blogtable-header{
        margin-bottom:35px;
    }

    .blogtable-title{
        font-size:32px;
        line-height:1.3;
    }

    .blogtable-description{
        font-size:15px;
        line-height:1.8;
    }

    .blogtable-button{
        width:100%;
        padding:16px 20px;
        font-size:15px;
    }

    .blogtable-table-wrapper{
        overflow-x:visible;
    }

    .blogtable-table{
        border-spacing:0;
    }

    .blogtable-table thead{
        display:none;
    }

    .blogtable-table,
    .blogtable-table tbody,
    .blogtable-table tr,
    .blogtable-table td{
        display:block;
        width:100%;
    }

    .blogtable-table tbody tr{
        margin-bottom:24px;
        background:rgba(255,255,255,0.05);
        border-radius:22px;
        overflow:hidden;
        border:1px solid rgba(255,255,255,0.08);
        box-shadow:
        0 10px 30px rgba(0,0,0,0.25);
    }

    .blogtable-table tbody td{
        border:none;
        border-radius:0 !important;
        padding:18px;
        margin:0;
        position:relative;
        font-size:14px;
        line-height:1.8;
    }

    .blogtable-table tbody td:not(:last-child){
        border-bottom:1px solid rgba(255,255,255,0.06);
    }

    .blogtable-info-card{
        flex-direction:row;
        align-items:center;
        gap:14px;
    }

    .blogtable-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:24px;
        border-radius:16px;
    }

    .blogtable-info-content h3{
        font-size:16px;
    }

    .blogtable-info-content p{
        font-size:12px;
    }

}

/* EXTRA SMALL DEVICES */

@media screen and (max-width: 575px){

    .blogtable-container{
        padding:35px 14px;
    }

    .blogtable-title{
        font-size:26px;
    }

    .blogtable-badge{
        font-size:11px;
        padding:8px 16px;
    }

    .blogtable-description{
        font-size:14px;
    }

    .blogtable-button{
        font-size:14px;
        border-radius:16px;
    }

    .blogtable-table tbody td{
        padding:16px;
        font-size:13px;
    }

    .blogtable-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }

}