/* New Dashboard Card UI/UX Styles */
#dashboard-view .card {
    min-height: 140px;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(30, 40, 90, 0.11), 0 2px 8px rgba(64, 88, 206, 0.07);
    padding: 30px 22px;
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

#dashboard-view .card:hover {
    box-shadow: 0 12px 36px rgba(30, 40, 90, 0.19), 0 4px 16px rgba(30, 40, 90, 0.13);
    transform: translateY(-4px) scale(1.015);
}

#dashboard-view .card-header {
    border-bottom: 1.5px solid #e3e8ee;
    margin-bottom: 22px;
    background: transparent;
    border-radius: 20px 20px 0 0;
    padding-bottom: 10px;
}

#dashboard-view .card-body {

    background: #fafdff;
    border-radius: 20px 20px 20px 20px;
}

#dashboard-view .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #244270;
    margin-bottom: 1.2rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: inline-block;
    gap: 8px;
    position: relative;
}

#dashboard-view .card-title.upcoming-exams-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 22px;
    border-radius: 4px;
    background: linear-gradient(135deg, #4f8cff 0%, #6ee7b7 100%);
    margin-right: 8px;
    opacity: 0.85;
}

#dashboard-view .upcoming-exams-card {
    min-height: 420px;
    background: #f6fafd;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30, 40, 90, 0.13), 0 2px 8px rgba(30, 40, 90, 0.08);
    padding: 32px 22px 22px 22px;
    border: none;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

#dashboard-view #upcoming-exame-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 300px;
    padding: 10px 14px;
}

#dashboard-view .exam-list-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.07);
    padding: 18px 14px;
    margin: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 4px solid #4f8cff;
    transition: box-shadow 0.2s, border-color 0.2s;
}

#dashboard-view .exam-list-item:hover {
    box-shadow: 0 4px 16px rgba(79, 140, 255, 0.13);
    border-left: 4px solid #3b82f6;
}

#dashboard-view .exam-list-item .exam-date {
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
    font-size: 1.08em;
}

#dashboard-view .exam-list-item .exam-time {
    color: #244270;
    font-size: 0.97em;
    margin-bottom: 2px;
}

#dashboard-view .exam-list-item .exam-student {
    color: #1a233a;
    font-size: 0.98em;
    font-weight: 600;
    margin-bottom: 2px;
}

#dashboard-view .exam-list-item .exam-type {
    color: #7b8ca6;
    font-size: 0.95em;
    font-weight: 500;
}

#dashboard-view .card .btn, #dashboard-view .card .form-control {
    border-radius: 12px;
    box-shadow: none;
    transition: border-color 0.2s;
}

#dashboard-view .card .btn:focus, #dashboard-view .card .form-control:focus {
    border-color: #4f8cff;
    outline: none;
}

#dashboard-view .card .avatar-title {
    font-size: 2rem;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#dashboard-view .card .counter-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--coupon-primary-text);
    margin: 0.75rem 0;
    line-height: 1.2;
}

#dashboard-view .dashboard-budget-card {
    min-height: 140px;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(30, 40, 90, 0.11), 0 2px 8px rgba(30, 40, 90, 0.07);
    padding: 30px 22px;
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    background: #fafdff;
}


#final-fee-amount {
    border: 2px solid rgb(194 227 201 / 87%);
    border-radius: 6px;
    padding: 3px 4px;
}
