.th-header{
	    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
    unicode-bidi: isolate;
	background:#f8f9ff !important;
}

.hero{
    position:relative;
    text-align:center;
    padding:90px 20px 60px;
}

.hero-glow{
    position:absolute;
    width:420px;
    height:420px;
    background:#3b82f6;
    filter:blur(140px);
    opacity:.18;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

.hero h1{
    position:relative;
    z-index:1;
    font-size:56px;
    font-weight:800;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.hero h1 span{
    background:linear-gradient(135deg,#3b82f6,#8b5cf6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    position:relative;
    z-index:1;
    max-width:760px;
    margin:auto;
    color:#7c7c7c !important;
    font-size:18px;
    line-height:1.7;
}

.dashboard-container{
    max-width:1300px;
    margin:auto;
    padding:20px;
}

.glass-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 8px 32px rgb(0 0 0 / 18%);
    border-radius:24px;
}

.main-card{
    padding:28px;
    margin-bottom:28px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.section-header.simple{
    margin-bottom:20px;
}

.section-header h2{
    font-size:28px;
    margin-bottom:8px;
}

.section-header p{
    color:#7c7c7c;
}

.add-btn,
.primary-btn,
.secondary-btn{
    border:none;
    height:52px;
    padding:0 22px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.25s ease;
}

.add-btn,
.primary-btn{
    background:linear-gradient(135deg,#3b82f6,#6366f1);
    color:#fff;
    box-shadow:0 10px 24px rgba(59,130,246,.25);
}

.add-btn:hover,
.primary-btn:hover{
    transform:translateY(-2px);
}

.secondary-btn{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.1);
}

.secondary-btn:hover{
    background:rgba(255,255,255,0.12);
}

.bottom-actions{
    margin-top:28px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

/* TASK INPUTS */

.task-input-grid{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.task-input-row{
    display:grid;
    grid-template-columns:1fr 220px 60px;
    gap:16px;
    align-items:center;
}

.task-input-row input,
.task-input-row select{
    width:100%;
    height:52px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.06);
    color:#7c7c7c !important;
    padding:0 16px;
    outline:none;
    font-size:15px;
}

.task-input-row input:focus,
.task-input-row select:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 4px rgba(59,130,246,.15);
}

.task-input-row input::placeholder{
    color:#94a3b8;
}

.remove-row-btn{
    width:52px;
    height:52px;
    border:none;
    border-radius:14px;
    background:#ef4444;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

/* STATS */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:28px;
}

.stat-card{
    padding:24px;
}

.stat-title{
    color:#cbd5e1;
    font-size:14px;
    margin-bottom:10px;
}

.stat-number{
    font-size:24px;
    font-weight:800;
}

/* PROGRESS */

.progress-card{
    padding:24px;
    margin-bottom:28px;
}

.progress-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:14px;
    font-weight:600;
}

.progress-track{
    width:100%;
    height:14px;
    border-radius:20px;
    overflow:hidden;
    background:rgba(255,255,255,0.08);
}

.progress-fill{
    width:0%;
    height:100%;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #3b82f6,
        #6366f1,
        #8b5cf6
    );
    transition:.4s ease;
}

/* FILTERS */

.filter-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.filter-btn{
    height:42px;
    padding:0 18px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.06);
    color:#fff;
    cursor:pointer;
    transition:.25s;
}

.filter-btn.active{
    background:linear-gradient(135deg,#3b82f6,#6366f1);
    border:none;
}

/* TASK LIST */

.result-card{
    padding:28px;
    margin-bottom:50px;
}

.task-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:22px;
    margin-bottom:18px;
    transition:.25s ease;
}

.task-card:hover{
    transform:translateY(-2px);
}

.task-card.completed{
    opacity:.7;
}

.task-card.completed .task-title{
    text-decoration:line-through;
}

.task-top{
    display:flex;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
}

.task-title{
    font-size:18px;
    font-weight:700;
    word-break:break-word;
}

.task-meta{
    margin-top:14px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.priority-badge{
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.priority-low{
    background:rgba(59,130,246,.15);
    color:#60a5fa;
}

.priority-medium{
    background:rgba(245,158,11,.15);
    color:#f59e0b;
}

.priority-high{
    background:rgba(239,68,68,.15);
    color:#ef4444;
}

.task-actions{
    margin-top:18px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.task-btn{
    height:42px;
    padding:0 16px !important;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}

.complete-btn{
    background:#10b981;
    color:#fff;
}

.edit-btn{
	    margin-right: 3px;
    margin-left: 3px;
    background:#f59e0b;
    color:#fff;
}

.delete-btn{
    background:#ef4444;
    color:#fff;
}

.task-btn:hover{
    transform:translateY(-2px);
}

/* EMPTY STATE */

.empty-state{
    text-align:center;
    padding:60px 20px;
    display:none;
}

.empty-state h3{
    font-size:24px;
    margin-bottom:10px;
}

.empty-state p{
    color:#7c7c7c;
}

/* INLINE EDIT */

.edit-input{
    width:100%;
    height:50px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.06);
    color:#7c7c7c;
    padding:0 16px;
    margin-bottom:14px;
}

/* =========================
   TASK TABLE
========================= */

/* .task-table-wrap{
    width:100%;
    overflow-x:auto;
}

.task-table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

.task-table th{
	background: #f8f9ff;
    text-align:left;
    padding:18px;
    font-size:15px;
    font-weight:700;
    border-bottom:1px solid rgba(255,255,255,.1);
    color:#64748b;
}

.task-table td{
    padding:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
    vertical-align:middle;
}

.task-table tr:hover{
    background:rgba(255,255,255,.03);
}

.status-completed{
    color:#10b981;
    font-weight:700;
}

.status-pending{
    color:#f59e0b;
    font-weight:700;
}

.table-actions{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.table-actions .task-btn{
    margin:0;
}

.task-name{
    font-weight:600;
    color:#7c7c7c;
    max-width:300px;
    word-break:break-word;
} */


th{
	background: #f8f9ff !important;
}
.task-table td{
    padding:18px;
    border-bottom:1px solid #e5e7eb;
    vertical-align:middle;
}

/* Row separator */

.task-table tbody tr{
    border-bottom:1px solid #e5e7eb;
    transition:all .25s ease;
}

.task-table tbody tr:last-child{
    border-bottom:none;
}

/* Hover Effect */

.task-table tbody tr:hover{
    background:#f8faff;
}

.task-table tbody tr:hover td{
    background:#f8faff;
}

@media(max-width:768px){

    .task-table{
        min-width:700px;
    }

}




/* RESPONSIVE */

@media(max-width:1100px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .task-input-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .section-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .task-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .filter-buttons{
        width:100%;
    }

    .filter-btn{
        flex:1;
    }

    .task-actions{
        width:100%;
    }

    .task-btn{
        flex:1;
    }
}