/* ===================================
   Success Cases Page Styles
   Premium UX/UI Design
   =================================== */

/* Hero Section */
.cases-hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #011d46, #2054a1);
}

.cases-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cases-hero__shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.cases-hero__shapes .shape--1 {
    width: 400px;
    height: 400px;
    background: #4F46E5;
    top: -100px;
    right: 10%;
}

.cases-hero__shapes .shape--2 {
    width: 300px;
    height: 300px;
    background: #06B6D4;
    bottom: -50px;
    left: 5%;
}

.cases-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cases-hero__content {
    position: relative;
    z-index: 1;
}

.cases-hero__content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cases-hero__content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.cases-hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cases-hero__stats {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(147, 197, 253, 0.8);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cases-hero__stats i {
    color: rgba(147, 197, 253, 0.9);
    margin-top: 2px;
    flex-shrink: 0;
}

.cases-hero__image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cases-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cases-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cases-hero__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cases-hero {
        padding: 100px 0 40px;
    }
    
    .cases-hero__content h1 {
        font-size: 1.75rem;
    }
    
    .cases-hero__content p {
        font-size: 1rem;
    }
}

/* Cases Grid Section */
.cases-section {
    padding: 40px 0 80px;
    background: linear-gradient(to right, #011d46, #2054a1);
}

.cases-count {
    margin-bottom: 24px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.8);
}

.cases-count strong {
    color: #fff;
    font-weight: 700;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Success Case Card */
.case-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Card accent border top */
.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4F46E5, #06B6D4, #10B981);
    opacity: 0;
    transition: var(--transition);
}

.case-card:hover::before {
    opacity: 1;
}

.case-card__header {
    position: relative;
    padding: 20px 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.case-card__photo {
    position: relative;
    flex-shrink: 0;
}

.case-card__photo img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-card__badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.case-card__info {
    flex: 1;
    min-width: 0;
}

.case-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.7);
}

.case-card__location i {
    color: rgba(147, 197, 253, 0.9);
    font-size: 0.75rem;
}

.case-card__body {
    padding: 16px 20px;
}

.case-card__university {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.case-card__university-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(147, 197, 253, 0.9);
    font-size: 0.875rem;
}

.case-card__university-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.case-card__tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.case-card__tag--primary {
    background: rgba(147, 197, 253, 0.2);
    color: rgba(147, 197, 253, 0.95);
    border: 1px solid rgba(147, 197, 253, 0.3);
}

/* New Info Grid Styles */
.case-card__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-card__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.case-card__info-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.case-card__info-item--school {
    grid-column: span 2;
    background: rgba(245, 158, 11, 0.15);
}

.case-card__info-item--school:hover {
    background: rgba(245, 158, 11, 0.2);
}

.case-card__info-item--program {
    background: rgba(59, 130, 246, 0.15);
}

.case-card__info-item--program:hover {
    background: rgba(59, 130, 246, 0.2);
}

.case-card__info-item--submission {
    background: rgba(147, 51, 234, 0.15);
}

.case-card__info-item--submission:hover {
    background: rgba(147, 51, 234, 0.2);
}

.case-card__info-item--conditions {
    grid-column: span 2;
    background: rgba(16, 185, 129, 0.15);
}

.case-card__info-item--conditions:hover {
    background: rgba(16, 185, 129, 0.2);
}

.case-card__info-icon {
    font-size: 0.875rem;
    margin-right: 6px;
}

.case-card__info-item--school .case-card__info-icon { color: #fbbf24; }
.case-card__info-item--program .case-card__info-icon { color: #60a5fa; }
.case-card__info-item--submission .case-card__info-icon { color: #c084fc; }
.case-card__info-item--conditions .case-card__info-icon { color: #34d399; }

.case-card__info-label {
    font-size: 0.688rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.case-card__info-value {
    font-size: 0.813rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.case-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-card__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-card__detail-label {
    font-size: 0.688rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card__detail-value {
    font-size: 0.813rem;
    font-weight: 600;
    color: #fff;
}

.case-card__footer {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-card__scholarship {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.case-card__scholarship-label {
    font-size: 0.688rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card__scholarship-value {
    font-size: 0.938rem;
    font-weight: 700;
    color: #34d399;
}

.case-card__scholarship-value.free {
    display: flex;
    align-items: center;
    gap: 4px;
}

.case-card__action {
    padding: 8px 16px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border: none;
    border-radius: var(--radius);
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.case-card__action:hover {
    background: linear-gradient(135deg, #4338CA, #6D28D9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

/* Scholarship Badge Styles */
.scholarship-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.scholarship-badge--full {
    background: linear-gradient(135deg, #10B981, #06B6D4);
    color: var(--white);
}

.scholarship-badge--partial {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: var(--white);
}

.scholarship-badge--tuition {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: var(--white);
}

/* Decision Type Badges */
.decision-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.decision-badge--regular {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.decision-badge--early {
    background: rgba(147, 197, 253, 0.2);
    color: rgba(147, 197, 253, 0.95);
}

/* Newsletter CTA Section */
.cases-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
}

.cases-cta__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cases-cta__content {
    flex: 1;
}

.cases-cta__content h2 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cases-cta__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cases-cta__actions {
    display: flex;
    gap: 12px;
}

/* Pagination */
.cases-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-cta__wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cases-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cases-hero {
        padding: 120px 0 40px;
    }
    
    .cases-hero__content h1 {
        font-size: 1.75rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .case-card__details {
        grid-template-columns: 1fr;
    }
    
    .cases-hero__buttons {
        flex-direction: column;
    }
    
    .cases-hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Card Hover Effects */
.case-card__photo img {
    transition: var(--transition);
}

.case-card:hover .case-card__photo img {
    transform: scale(1.05);
}

/* Score Circular Progress Indicators */
.case-card__scores {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.score-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.score-circle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.score-circle__ring {
    position: relative;
    width: 52px;
    height: 52px;
}

.score-circle__ring svg {
    transform: rotate(-90deg);
    width: 52px;
    height: 52px;
}

.score-circle__ring circle {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.score-circle__ring .circle-bg {
    stroke: rgba(255, 255, 255, 0.15);
}

.score-circle__ring .circle-progress {
    stroke-dasharray: 138.23;
    stroke-dashoffset: 138.23;
    transition: stroke-dashoffset 1s ease-out;
}

.score-circle__value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.score-circle__label {
    font-size: 0.688rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Score Level Colors - Vibrant & Modern */
/* Excellent - Vibrant Green */
.score-circle--excellent .circle-progress {
    stroke: #10b981;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}
.score-circle--excellent .score-circle__value {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Good - Bright Blue */
.score-circle--good .circle-progress {
    stroke: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}
.score-circle--good .score-circle__value {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

/* Average - Vibrant Orange */
.score-circle--average .circle-progress {
    stroke: #f59e0b;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}
.score-circle--average .score-circle__value {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Below Average - Vibrant Red */
.score-circle--low .circle-progress {
    stroke: #ef4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}
.score-circle--low .score-circle__value {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* IELTS - Purple */
.score-circle--ielts .circle-progress {
    stroke: #8b5cf6;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}
.score-circle--ielts .score-circle__value {
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* SAT - Cyan */
.score-circle--sat .circle-progress {
    stroke: #06b6d4;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}
.score-circle--sat .score-circle__value {
    color: #06b6d4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

/* GPA - Pink */
.score-circle--gpa .circle-progress {
    stroke: #ec4899;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
}
.score-circle--gpa .score-circle__value {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

/* GP - Lime Green */
.score-circle--gp .circle-progress {
    stroke: #84cc16;
    filter: drop-shadow(0 0 8px rgba(132, 204, 22, 0.5));
}
.score-circle--gp .score-circle__value {
    color: #84cc16;
    text-shadow: 0 0 10px rgba(132, 204, 22, 0.3);
}

/* TOEFL - Indigo */
.score-circle--toefl .circle-progress {
    stroke: #6366f1;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
}
.score-circle--toefl .score-circle__value {
    color: #6366f1;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

/* ACT - Amber */
.score-circle--act .circle-progress {
    stroke: #f59e0b;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}
.score-circle--act .score-circle__value {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.case-card--loading {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===================================
   Case Modal Styles
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(147, 197, 253, 0.95);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Student Info */
.modal-student-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-meta {
    flex: 1;
}

.modal-meta p {
    color: rgba(255, 255, 255, 0.8);
    margin: 4px 0;
    font-size: 0.938rem;
}

.modal-meta p i {
    width: 20px;
    color: rgba(147, 197, 253, 0.9);
    margin-right: 8px;
}

/* Final Choice Box */
.final-choice-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    color: #10b981;
    font-weight: 600;
    font-size: 1.125rem;
}

.final-choice-box i {
    font-size: 1.25rem;
}

/* Decisions Table */
.decisions-table-wrapper {
    overflow-x: auto;
    margin-bottom: 16px;
}

.decisions-table {
    width: 100%;
    border-collapse: collapse;
}

.decisions-table th,
.decisions-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.decisions-table th {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
}

.decisions-table td {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.decisions-table td strong {
    color: #fff;
    font-weight: 600;
}

.decision-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.decision-status.accepted {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.decision-status.waitlisted {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.decision-status.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.decision-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.summary-badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 600;
}

.summary-badge.accepted {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.summary-badge.waitlisted {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.summary-badge.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Extracurricular Items */
.extracurricular-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border-left: 3px solid rgba(147, 197, 253, 0.5);
}

.extracurricular-item:last-child {
    margin-bottom: 0;
}

.extracurricular-item h4 {
    color: #fff;
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.extracurricular-role {
    color: rgba(147, 197, 253, 0.95);
    font-size: 0.813rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.extracurricular-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Essay Content */
.essay-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.938rem;
    line-height: 1.8;
    white-space: pre-wrap;
    border-left: 3px solid rgba(139, 92, 246, 0.5);
}

/* Button Styles for Modal */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(147, 197, 253, 0.5);
    color: rgba(147, 197, 253, 0.95);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: rgba(147, 197, 253, 0.15);
    border-color: rgba(147, 197, 253, 0.8);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-student-info {
        flex-direction: column;
        text-align: center;
    }

    .modal-photo {
        width: 80px;
        height: 80px;
    }

    .decisions-table th,
    .decisions-table td {
        padding: 10px 12px;
    }
}
