/* ============================================
   STUNNING GLASSMORPHIC DASHBOARD DESIGN
   Modern 2025 Task Manager UI
   ============================================ */

 .auth-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    width: 100%;
    max-width: 1040px;
    padding: 28px 28px 30px;
    border-radius: 28px;
    animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.32) 0,
            rgba(255, 255, 255, 0.12) 40%,
            rgba(15, 23, 42, 0.2) 100%);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   TOP BAR LAYOUT
   ============================================ */

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 6px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: radial-gradient(circle at 0 0, #fef9c3, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 30px rgba(88, 28, 135, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.brand-icon i {
    color: #0f172a;
    font-size: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #f9fafb;
}

.brand-subtitle {
    font-size: 13px;
    color: rgba(226, 232, 240, 0.9);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================
   ROLE BADGE
   ============================================ */

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.5px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
            0 0 0 12px rgba(255, 255, 255, 0);
    }
}

.role-badge i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============================================
   MAIN LAYOUT: TWO COLUMNS
   ============================================ */

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 370px) minmax(0, 1.5fr);
    gap: 24px;
    margin-top: 22px;
}

.dashboard-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dashboard-column-left {
    min-width: 0;
}

.dashboard-column-right {
    min-width: 0;
}

/* ============================================
   ADD TASK SECTION
   ============================================ */

.add-task-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px 20px;
    background: rgba(15, 23, 42, 0.45);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.65);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #e5e7eb;
}

.section-title i {
    color: #a855f7;
}

.section-subtitle {
    font-size: 13px;
    color: rgba(148, 163, 184, 0.95);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

#taskTitle:focus ~ .input-icon,
#taskDescription:focus ~ .input-icon {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

#taskTitle,
#taskDescription {
    width: 100%;
    padding: 18px 24px 18px 55px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    border-radius: 18px;
    font-size: 16px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(15, 23, 42, 0.82);
    color: #ffffff;
    backdrop-filter: blur(15px);
    font-weight: 500;
}

#taskDescription {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
    line-height: 1.6;
}

#taskTitle::placeholder,
#taskDescription::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

#taskTitle:focus,
#taskDescription:focus {
    border-color: #a855f7;
    background: rgba(15, 23, 42, 0.95);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.9),
        0 0 0 8px rgba(168, 85, 247, 0.25);
    transform: translateY(-1px);
}

#addTaskBtn {
    padding: 20px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#addTaskBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

#addTaskBtn:hover::before {
    left: 100%;
}

#addTaskBtn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

#addTaskBtn:active {
    transform: translateY(-2px) scale(1);
}

/* ============================================
   TASKS CONTAINER
   ============================================ */

.tasks-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 35px;
}

#taskList {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   TASK CARDS - BEAUTIFUL GLASSMORPHIC DESIGN
   ============================================ */

.task-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 28px 30px;
    border-radius: 22px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: taskSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.task-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.task-item:hover::before {
    opacity: 1;
}

@keyframes taskSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.task-item:nth-child(1) { animation-delay: 0.05s; }
.task-item:nth-child(2) { animation-delay: 0.1s; }
.task-item:nth-child(3) { animation-delay: 0.15s; }
.task-item:nth-child(4) { animation-delay: 0.2s; }
.task-item:nth-child(5) { animation-delay: 0.25s; }
.task-item:nth-child(n+6) { animation-delay: 0.3s; }

.task-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset,
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.16));
    border-color: rgba(255, 255, 255, 0.3);
}

.task-content {
    flex: 1;
    min-width: 0;
}

.task-text {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    line-height: 1.4;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.task-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0;
    line-height: 1.7;
    word-wrap: break-word;
    font-weight: 400;
}

/* ============================================
   STATUS BADGES - COLORED & BEAUTIFUL
   ============================================ */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.task-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 400;
}

.task-date i {
    margin-right: 6px;
    opacity: 0.8;
}

.task-active-indicator {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-weight: 500;
}

.task-active-indicator i {
    font-size: 14px;
}

/* ============================================
   TASK ACTIONS
   ============================================ */

.task-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.task-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    backdrop-filter: blur(15px);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.task-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.task-btn:hover::before {
    width: 300px;
    height: 300px;
}

.task-btn i {
    position: relative;
    z-index: 1;
}

.task-btn span {
    position: relative;
    z-index: 1;
}

.edit-btn {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.35), rgba(33, 150, 243, 0.25));
    color: #ffffff;
    border: 1px solid rgba(33, 150, 243, 0.5);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.edit-btn:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.5), rgba(33, 150, 243, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.35);
    border-color: rgba(33, 150, 243, 0.7);
}

.delete-btn {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.35), rgba(244, 67, 54, 0.25));
    color: #ffffff;
    border: 1px solid rgba(244, 67, 54, 0.5);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2);
}

.delete-btn:hover {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.5), rgba(244, 67, 54, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.35);
    border-color: rgba(244, 67, 54, 0.7);
}

.save-btn {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.35), rgba(76, 175, 80, 0.25));
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.5);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.save-btn:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.5), rgba(76, 175, 80, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.35);
    border-color: rgba(76, 175, 80, 0.7);
}

.cancel-btn {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.35), rgba(158, 158, 158, 0.25));
    color: #ffffff;
    border: 1px solid rgba(158, 158, 158, 0.5);
    box-shadow: 0 4px 15px rgba(158, 158, 158, 0.2);
}

.cancel-btn:hover {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.5), rgba(158, 158, 158, 0.4));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 158, 158, 0.35);
}

/* ============================================
   EDIT MODE INPUTS
   ============================================ */

.edit-input,
.edit-textarea,
.edit-select {
    width: 100%;
    margin-bottom: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-weight: 500;
}

.edit-textarea {
    min-height: 90px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.edit-input::placeholder,
.edit-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.edit-input:focus,
.edit-textarea:focus,
.edit-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 5px rgba(255, 255, 255, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.2);
}

.edit-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.edit-select option {
    background: #667eea;
    color: #ffffff;
}

.edit-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
}

.edit-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #667eea;
}

/* ============================================
   FOOTER
   ============================================ */

.dashboard-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    padding: 80px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    border-radius: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   SCROLLBAR - BEAUTIFUL STYLING
   ============================================ */

.tasks-container::-webkit-scrollbar {
    width: 12px;
}

.tasks-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tasks-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.25));
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tasks-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
}

/* ============================================
   SESSION EXPIRED MODAL - GLASSMORPHIC
   ============================================ */

.session-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.4s ease-out;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.session-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    padding: 45px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.session-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.session-modal-content {
    position: relative;
    z-index: 1;
}

.session-modal-icon {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.session-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.session-modal-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.session-modal-button {
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    color: #ffffff;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.session-modal-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.session-modal-button:hover::before {
    left: 100%;
}

.session-modal-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
    border-color: rgba(255, 255, 255, 0.6);
}

.session-modal-button:active {
    transform: translateY(-2px) scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .dashboard-card {
        padding: 40px 30px;
        max-width: 100%;
        border-radius: 24px;
    }
    
    .dashboard-header h2 {
        font-size: 32px;
    }
    
    .dashboard-header h2 i {
        font-size: 28px;
    }
    
    .add-task-section {
        padding: 24px;
    }
    
    .task-item {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .task-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .task-btn {
        flex: 1;
    }
    
    .session-modal {
        padding: 35px 30px;
        margin: 20px;
    }
    
    .session-modal-title {
        font-size: 26px;
    }
    
    .session-modal-icon {
        font-size: 56px;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .dashboard-header h2 {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }
    
    .task-text {
        font-size: 20px;
    }
    
    .session-modal {
        padding: 30px 24px;
    }
    
    .session-modal-title {
        font-size: 24px;
    }
    
    .session-modal-icon {
        font-size: 48px;
    }
}
