/* USAYESS Scholarship Portal Styles */
/* Matching events.usayess.org design */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Space+Grotesk:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&display=swap");

:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-color: #dee2e6;
}

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    line-height: 1.2;
}

.site-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
    line-height: 1.2;
}

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.header-nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font: inherit;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
    background-color: rgba(255,255,255,0.1);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background-color: #ffffff;
    border: 1px solid #dbe3ee;
    border-radius: 6px;
    min-width: 240px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    padding: 6px 0;
    z-index: 1100;
    white-space: nowrap;
    max-height: 70vh;
    overflow-y: auto;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
}

.nav-dropdown-menu a:hover {
    background-color: #f1f4f8;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.btn-header {
    background-color: var(--success-color);
    color: white;
    padding: 8px 20px;
    font-weight: 500;
}

.btn-header:hover {
    background-color: #218838;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        height: 45px;
    }
    
    .site-title {
        font-size: 18px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .header-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 1001;
    }
    
    .header-nav.active {
        max-height: 500px;
    }
    
    .header-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-radius: 0;
    }
    
    .header-nav a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-radius: 0;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
        background-color: var(--primary-color);
        max-height: none;
        overflow-y: visible;
    }

    .nav-dropdown-menu a {
        padding-left: 36px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: white;
    }
    
    .btn-header {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .site-title {
        font-size: 16px;
    }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 20px;
    text-align: center;
}

.page-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 40px;
}

/* Content Sections */
.content-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* Scholarship Cards */
.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

/* Card Styles */
.card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-header {
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.mb-3 {
    margin-bottom: 20px;
}

.scholarship-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.scholarship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.scholarship-card.open {
    border-color: var(--success-color);
    border-width: 2px;
}

.scholarship-card.closed {
    opacity: 0.7;
}

.scholarship-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.scholarship-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.status-open {
    background-color: #d4edda;
    color: #155724;
}

.status-closed {
    background-color: #f8d7da;
    color: #721c24;
}

.status-soon {
    background-color: #fff3cd;
    color: #856404;
}

.scholarship-description {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.scholarship-details {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.scholarship-details strong {
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #002244;
}

.btn-secondary {
    background-color: var(--medium-gray);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-info {
    background-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background-color: #138496;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 15px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-label .required {
    color: var(--danger-color);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-control.error {
    border-color: var(--danger-color);
}

.form-help {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 5px;
}

.form-error {
    font-size: 14px;
    color: var(--danger-color);
    margin-top: 5px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

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

/* Alerts */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: relative;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-error,
.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert .close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.5;
}

.alert .close:hover {
    opacity: 1;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-danger {
    background-color: var(--danger-color);
    color: white;
}

.badge-warning {
    background-color: var(--warning-color);
    color: #333;
}

.badge-info {
    background-color: var(--info-color);
    color: white;
}

.badge-secondary {
    background-color: var(--medium-gray);
    color: white;
}

.badge-dark {
    background-color: #343a40;
    color: white;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #dee2e6;
    gap: 5px;
}

.nav-item {
    margin-bottom: -2px;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: #495057;
    text-decoration: none;
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: white;
    border-color: #dee2e6 #dee2e6 white;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 5px;
    justify-content: center;
    margin: 20px 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: block;
    padding: 8px 12px;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.2s;
}

.page-link:hover {
    background-color: #e9ecef;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background-color: var(--light-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

.thead-light th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.table tbody tr:hover {
    background-color: var(--light-gray);
}

.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.05);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 14px;
    color: #aaa;
}

/* Utility Classes */
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.p-0 { padding: 0; }

.text-danger { color: #dc3545; }
.text-warning { color: #ffc107; }
.text-success { color: #28a745; }
.text-muted { color: #6c757d; }

.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

/* Responsive */
@media (max-width: 768px) {
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .content-section {
        padding: 20px;
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-0 { margin-bottom: 0; }

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.flex-1 { flex: 1; }

/* Upgrade Membership */
.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px 14px 14px 14px;
    margin: 0 auto 12px;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.2s;
}

.pricing-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #28a745;
    transform: scale(1.02);
}

.pricing-card.current {
    border: 3px solid #17a2b8;
    background: #f0f9ff;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.pricing-col {
    flex: 1 1 260px;
    max-width: 340px;
}

.pricing-col .pricing-card {
    height: 100%;
}

.pricing-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.price {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.price-period {
    font-size: 12px;
    color: #666;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.feature-list {
    text-align: left;
    margin: 12px 0;
    list-style: none;
    padding: 0;
    font-size: 12px;
}

.feature-list li {
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
}

.comparison-table {
    margin-top: 50px;
}

.table-section-header {
    background-color: #f8f9fa !important;
    border-top: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
}

.table-section-header td {
    padding: 12px !important;
    font-size: 16px;
    color: #495057;
}

/* Applicant Dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.dashboard-hero {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.dashboard-hero-subtitle {
    margin: 0;
    opacity: 0.9;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.dashboard-card h3 {
    margin-top: 0;
    color: #003366;
}

.dashboard-card p {
    color: #555;
}

.card-actions {
    margin-top: 15px;
}

.upgrade-cta {
    background: #fff7ed;
    border: 2px solid #fb923c;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.upgrade-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.upgrade-cta-icon {
    font-size: 36px;
    line-height: 1;
}

.upgrade-cta-body {
    flex: 1;
    min-width: 220px;
}

.upgrade-cta-title {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #9a3412;
}

.upgrade-cta-text {
    margin: 0;
    color: #7c2d12;
}

.upgrade-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-continue {
    margin-top: 10px;
}

/* Premium Features */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.feature-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.feature-icon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 15px;
}

/* Applicant Register */
.register-panel {
    max-width: 600px;
    margin: 0 auto;
}

.parent-info {
    display: none;
    background: #fffbea;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.parent-info-title {
    color: #856404;
    margin-top: 0;
}

.parent-info-text {
    font-size: 14px;
    color: #856404;
}

.register-footer {
    text-align: center;
    margin-top: 20px;
}

/* Applicant Profile */
.profile-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.profile-promo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-promo-icon {
    font-size: 60px;
    line-height: 1;
}

.profile-promo-body {
    flex: 1;
}

.profile-promo-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: white;
}

.profile-promo-text {
    margin: 0 0 15px 0;
    opacity: 0.95;
    line-height: 1.6;
}

.profile-promo-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-promo-link {
    background: white;
    color: #667eea;
    font-weight: 600;
}

.profile-promo-link-alt {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.profile-promo-note {
    margin: 15px 0 0 0;
    font-size: 13px;
    opacity: 0.8;
}

.section-title-accent {
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.section-title-spaced {
    margin-top: 30px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid-3-wide {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.text-uppercase {
    text-transform: uppercase;
}

.form-actions {
    margin-top: 30px;
}

.section-divider {
    margin: 40px 0;
}

/* Applicant Applications */
.applications-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.applications-promo-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.applications-promo-icon {
    font-size: 50px;
    line-height: 1;
}

.applications-promo-body {
    flex: 1;
}

.applications-promo-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: white;
}

.applications-promo-text {
    margin: 0 0 12px 0;
    opacity: 0.95;
    line-height: 1.5;
    font-size: 14px;
}

.applications-promo-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.applications-promo-link {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 14px;
}

.applications-promo-link-alt {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 14px;
}

.applications-promo-note {
    margin: 12px 0 0 0;
    font-size: 12px;
    opacity: 0.8;
}

.applications-header-actions {
    display: flex;
    gap: 10px;
}

.action-row {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.empty-state-center {
    text-align: center;
    padding: 40px 0;
}

.empty-state-text {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

.tips-list {
    margin-left: 20px;
    line-height: 2;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Applicant Achievements / Accomplishments */
.page-shell {
    padding-top: 30px;
    padding-bottom: 40px;
}

.header-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    color: white;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 25px;
}

.header-banner-title {
    margin: 0 0 10px 0;
}

.header-banner-subtitle {
    margin: 0;
    opacity: 0.95;
}

.achievement-card,
.accomplishment-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.achievement-card.featured,
.accomplishment-card.featured {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.achievement-card h3,
.accomplishment-card h3 {
    margin: 0 0 10px 0;
    color: #1f2937;
    font-size: 20px;
}

.achievement-meta,
.accomplishment-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.achievement-actions,
.accomplishment-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.badge-featured {
    background: #fbbf24;
    color: #78350f;
}

.badge-verified {
    background: #34d399;
    color: #065f46;
}

.badge-discipline {
    background: #a78bfa;
    color: #4c1d95;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.empty-state-title {
    color: #4b5563;
    margin-bottom: 15px;
}

.empty-state-description {
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.info-muted {
    color: #6b7280;
    margin-bottom: 20px;
}

.body-muted {
    color: #4b5563;
    line-height: 1.6;
    margin: 12px 0;
}

.highlight-text {
    margin: 12px 0;
    font-weight: 600;
    color: #667eea;
}

.inline-form {
    display: inline;
}

/* Request Role Verification */
.verification-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

.verification-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.verification-header h1 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 32px;
}

.verification-subtitle {
    opacity: 0.9;
    margin: 0;
}

.status-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.status-card.verified {
    border-color: #28a745;
    background: #d4edda;
}

.status-card.pending {
    border-color: #ffc107;
    background: #fff3cd;
}

.status-center {
    text-align: center;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-title-verified {
    color: #155724;
    margin: 0 0 10px 0;
}

.status-title-pending {
    color: #856404;
    margin: 0 0 10px 0;
}

.status-summary {
    margin: 0 0 20px 0;
}

.status-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.status-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #c3e6cb;
}

.status-details.pending {
    border-top-color: #ffe69c;
}

.status-note {
    text-align: center;
    margin-top: 20px;
}

.status-note-text {
    font-size: 14px;
    color: #666;
}

.verification-error-list {
    margin: 10px 0 0 20px;
}

.info-section {
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.info-section h3 {
    margin-top: 0;
    color: #003366;
}

.verification-form-section {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.verification-form-section .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.verification-form-section .form-group input,
.verification-form-section .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.verification-form-section .form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.verification-help {
    color: #666;
    margin-bottom: 25px;
}

.required-mark {
    color: red;
}

.verification-process {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.verification-steps {
    margin: 10px 0 0 20px;
    padding: 0;
}

.verification-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.verification-actions .btn-primary {
    flex: 1;
}

.is-hidden {
    display: none;
}

/* Profile Edit */
.profile-edit-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin: 0 -20px 30px -20px;
    color: white;
    text-align: center;
}

.profile-edit-subtitle {
    opacity: 0.9;
    margin-top: 10px;
}

.profile-edit-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-edit-section .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.profile-edit-section .form-group input[type="text"],
.profile-edit-section .form-group input[type="number"],
.profile-edit-section .form-group input[type="url"],
.profile-edit-section .form-group select,
.profile-edit-section .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
}

.profile-edit-section .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.profile-edit-section .form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

.profile-edit-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 22px;
}

.profile-edit-section h3 {
    color: #4b5563;
    font-size: 16px;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.profile-edit-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.profile-edit-muted {
    color: #6b7280;
    margin-bottom: 20px;
}

.profile-edit-actions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.profile-edit-actions .btn {
    margin: 0 10px;
}

.char-count {
    float: right;
    font-size: 12px;
    color: #9ca3af;
}

/* Profile View */
.profile-view {
    padding-top: 30px;
    padding-bottom: 40px;
}

.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
    margin: 0 -20px 30px -20px;
    border-radius: 0;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.profile-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.profile-tagline {
    font-size: 18px;
    margin: 10px 0;
    opacity: 0.9;
}

.profile-location {
    opacity: 0.8;
}

.completeness-bar {
    background: rgba(255,255,255,0.3);
    height: 30px;
    border-radius: 15px;
    max-width: 400px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.completeness-fill {
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    height: 100%;
    transition: width 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.completeness-text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.profile-actions {
    margin: 20px 0;
    text-align: center;
}

.profile-actions .btn {
    margin: 0 5px;
}

.profile-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-section h2 {
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 24px;
}

.profile-section h3 {
    color: #4b5563;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.profile-block {
    margin-bottom: 20px;
}

.profile-text {
    line-height: 1.6;
    color: #4b5563;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
}

.info-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    color: #1f2937;
    font-size: 16px;
}

.profile-view .accomplishment-card,
.profile-view .achievement-card {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.profile-view .accomplishment-card.featured,
.profile-view .achievement-card.featured {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.profile-view .accomplishment-card h4,
.profile-view .achievement-card h4 {
    margin: 0 0 5px 0;
    color: #1f2937;
    font-size: 18px;
}

.profile-view .accomplishment-meta,
.profile-view .achievement-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.profile-view .accomplishment-desc,
.profile-view .achievement-desc {
    color: #4b5563;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    color: #667eea;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.2s;
}

.social-link:hover {
    color: #764ba2;
}

.visibility-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

.visibility-public {
    background: #d1fae5;
    color: #065f46;
}

.visibility-coaches_only {
    background: #dbeafe;
    color: #1e40af;
}

.visibility-private {
    background: #fee2e2;
    color: #991b1b;
}

/* Scholarship Tracker */
.tracker-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.tracker-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tracker-header h1 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 36px;
}

.tracker-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.tracker-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffc107;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.tracker-actions {
    margin-bottom: 30px;
    text-align: center;
}

.tracker-actions .btn + .btn {
    margin-left: 10px;
}

.tracker-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-link {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-link:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.tab-link.active {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.tab-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.tab-link.active .tab-count {
    background: rgba(255,255,255,0.2);
}

.tracker-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 25px 0;
}

.tracker-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tracker-filter-form {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    color: #666;
}

.scholarship-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.scholarship-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.card-title h3 {
    margin: 0 0 10px 0;
    color: #003366;
    font-size: 22px;
}

.card-title h3 a {
    color: #003366;
    text-decoration: none;
}

.card-title h3 a:hover {
    color: #0066cc;
}

.organization {
    color: #666;
    font-size: 15px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.meta-item {
    color: #666;
    font-size: 14px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.status-interested {
    background: #e7f3ff;
    color: #0066cc;
}

.status-applied {
    background: #fff3cd;
    color: #856404;
}

.status-accepted {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-withdrawn {
    background: #e0e0e0;
    color: #666;
}

.deadline-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-size: 14px;
}

.deadline-warning.urgent {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.tracking-notes {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.tracking-notes h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
}

.tracker-link-actions {
    margin-top: 15px;
}

.btn-md {
    padding: 8px 16px;
    font-size: 14px;
}

.tracker-amount {
    color: #28a745;
    font-weight: bold;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
}

.empty-state h3 {
    color: #003366;
    margin-bottom: 15px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}

.modal-content h3 {
    margin-top: 0;
    color: #003366;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.modal-form select,
.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Utilities */
.float-right {
    float: right;
}

.form-help {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

.form-help-block {
    display: block;
    margin-top: 5px;
}

/* Upload Documents */
.upload-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Request Featured */
.featured-completeness-bar {
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

.featured-completeness-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: width 0.3s;
}

.requirement-item {
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    background: #f8f9fa;
}

.requirement-item.complete {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.requirement-item.incomplete {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

/* Payment Success */
.payment-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 50px auto;
}

.payment-icon-success {
    font-size: 72px;
    color: #28a745;
    margin-bottom: 20px;
}

.payment-icon-error {
    font-size: 72px;
    color: #dc3545;
    margin-bottom: 20px;
}

/* Parental Consent */
.consent-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 30px auto;
}

.consent-info {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 15px;
    margin: 20px 0;
}

.consent-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
}

.consent-terms {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
}

.consent-icon {
    font-size: 72px;
    color: #28a745;
}

/* Delete Account */
.danger-zone {
    background: #fff5f5;
    border: 2px solid #dc3545;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
}

/* Data Export */
.table-th-30 {
    width: 30%;
}

/* Media Gallery */
.media-thumb {
    height: 200px;
    object-fit: cover;
}

.media-video-placeholder {
    height: 200px;
}

/* Auth / Verification */
.auth-panel {
    max-width: 500px;
    margin: 0 auto;
}

.auth-text {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.auth-text-lg {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.auth-actions {
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-link {
    color: #003366;
}

/* Apply Page */
.alert-divider {
    margin: 0 8px;
    color: #6c757d;
}

.application-tips {
    background-color: #f8f9fa;
    margin-top: 30px;
}

.application-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* College Tracker */
.college-tracker .tracker-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.college-tracker .tracker-header h1 {
    color: white;
}

.college-tracker .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.college-tracker .action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.college-btn-primary {
    background: #ffc107;
    color: #1a237e;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.college-btn-primary:hover {
    background: #ffcd38;
    transform: translateY(-2px);
}

.college-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.college-tracker .filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.college-tracker .filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.college-tracker .filter-btn:hover {
    border-color: #1a237e;
    color: #1a237e;
}

.college-tracker .filter-btn.active {
    background: #1a237e;
    border-color: #1a237e;
    color: white;
}

.college-tracker .filter-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.college-tracker .filter-btn.active .filter-count {
    background: rgba(255,255,255,0.2);
}

.college-tracker .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.college-tracker .app-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
}

.college-tracker .app-card:hover {
    border-color: #1a237e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.college-tracker .app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.college-tracker .app-title h3 {
    margin: 0 0 5px 0;
    color: #1a237e;
    font-size: 20px;
}

.college-tracker .app-location {
    color: #666;
    font-size: 14px;
}

.college-tracker .app-details {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.college-tracker .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.college-tracker .detail-label {
    color: #666;
}

.college-tracker .detail-value {
    font-weight: 600;
    color: #333;
}

.college-tracker .detail-value-success {
    color: #388e3c;
}

.college-tracker .deadline-warning {
    color: #d32f2f;
    font-weight: 600;
}

.college-tracker .app-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.college-btn-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.college-btn-edit {
    background: #1a237e;
    color: white;
    border: none;
}

.college-btn-view {
    background: white;
    color: #1a237e;
    border: 1px solid #1a237e;
}

.college-tracker .alert-section {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.college-tracker .alert-section.overdue {
    background: #ffebee;
    border-color: #d32f2f;
}

.college-tracker .alert-section h3 {
    margin: 0 0 15px 0;
    color: #856404;
}

.college-tracker .alert-section.overdue h3 {
    color: #d32f2f;
}

.college-tracker .deadline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.college-tracker .deadline-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.college-tracker .deadline-item:last-child {
    border-bottom: none;
}

.college-tracker .alert-link {
    float: right;
}

.college-tracker .alert-link.overdue {
    color: #d32f2f;
}

.college-tracker .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    border: 2px dashed #e0e0e0;
}

.college-tracker .empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.college-tracker .empty-state h3 {
    color: #666;
    margin-bottom: 10px;
}

.college-tracker .empty-state p {
    color: #999;
    margin-bottom: 20px;
}

/* Achievement/Accomplishment Edit */
.edit-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin: 0 -20px 30px -20px;
    color: white;
    text-align: center;
}

.edit-form-container {
    padding-top: 30px;
    padding-bottom: 40px;
}

.edit-section-title {
    color: #667eea;
    margin-bottom: 20px;
}

.edit-form-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.edit-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.edit-form-section .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.edit-form-section .form-group input[type="text"],
.edit-form-section .form-group input[type="number"],
.edit-form-section .form-group input[type="date"],
.edit-form-section .form-group input[type="url"],
.edit-form-section .form-group select,
.edit-form-section .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
}

.edit-form-section .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.edit-form-section .form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 13px;
}

.edit-form-actions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.edit-form-actions .btn {
    margin: 0 10px;
}

/* Contact Page */
.contact-page {
    padding-top: 30px;
}

/* Scholarships - Index */
.scholarships-index {
    padding-top: 30px;
}

.scholarships-index .scholarships-breadcrumb {
    margin: 10px 0 20px;
    color: #6c757d;
    font-size: 14px;
}

.scholarships-index .scholarships-breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
}

.scholarships-index .scholarships-breadcrumb-link:hover {
    text-decoration: underline;
}

.scholarships-index .scholarships-breadcrumb-sep {
    margin: 0 8px;
}

.scholarships-index .scholarships-external-cta {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.scholarships-index .scholarships-external-cta-title {
    color: white;
    margin: 0 0 10px 0;
}

.scholarships-index .scholarships-external-cta-text {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.scholarships-index .scholarships-external-cta-btn {
    background: #28a745;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
}

.scholarships-index .scholarships-empty-cta {
    margin-top: 20px;
}

.scholarships-index .scholarships-about-intro {
    margin-top: 15px;
}

.scholarships-index .scholarships-about-steps {
    margin-left: 20px;
    margin-top: 10px;
}

.scholarships-index .scholarships-about-actions {
    text-align: center;
    margin-top: 30px;
}

.scholarships-index .scholarships-about-sep {
    margin: 0 15px;
    color: #6c757d;
}

.scholarships-index .scholarships-contact-list {
    margin-left: 20px;
    margin-top: 15px;
}

/* Scholarships - My Submissions */
.scholarships-submissions {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.scholarships-submissions .submissions-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.scholarships-submissions .submissions-header h1 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 36px;
}

.scholarships-submissions .submissions-header-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.scholarships-submissions .header-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.scholarships-submissions .stat-card {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.scholarships-submissions .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffc107;
}

.scholarships-submissions .stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.scholarships-submissions .submissions-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.scholarships-submissions .tab-link {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.scholarships-submissions .tab-link:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.scholarships-submissions .tab-link.active {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.scholarships-submissions .tab-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}

.scholarships-submissions .tab-link.active .tab-count {
    background: rgba(255,255,255,0.2);
}

.scholarships-submissions .submission-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.scholarships-submissions .submission-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scholarships-submissions .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.scholarships-submissions .card-title h3 {
    margin: 0 0 10px 0;
    color: #003366;
    font-size: 22px;
}

.scholarships-submissions .card-title h3 a {
    color: #003366;
    text-decoration: none;
}

.scholarships-submissions .card-title h3 a:hover {
    color: #0066cc;
}

.scholarships-submissions .organization {
    color: #666;
    font-size: 15px;
}

.scholarships-submissions .card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scholarships-submissions .card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.scholarships-submissions .meta-item {
    color: #666;
    font-size: 14px;
}

.scholarships-submissions .status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.scholarships-submissions .status-draft {
    background: #e0e0e0;
    color: #666;
}

.scholarships-submissions .status-pending_approval {
    background: #fff3cd;
    color: #856404;
}

.scholarships-submissions .status-approved {
    background: #d4edda;
    color: #155724;
}

.scholarships-submissions .status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.scholarships-submissions .status-archived {
    background: #f8f9fa;
    color: #6c757d;
}

.scholarships-submissions .rejection-notice {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.scholarships-submissions .rejection-notice h4 {
    margin: 0 0 10px 0;
    color: #721c24;
    font-size: 14px;
}

.scholarships-submissions .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
}

.scholarships-submissions .empty-state h3 {
    color: #003366;
    margin-bottom: 15px;
}

.scholarships-submissions .submissions-empty-cta {
    margin-top: 20px;
}

.scholarships-submissions .submissions-actions {
    margin-bottom: 30px;
    text-align: center;
}

.scholarships-submissions .submissions-action-secondary {
    margin-left: 10px;
}

.scholarships-submissions .submission-action-btn {
    padding: 8px 16px;
    font-size: 14px;
}

.scholarships-submissions .inline-form {
    display: inline;
}

.scholarships-submissions .submission-award {
    color: #28a745;
    font-weight: bold;
}

.scholarships-submissions .rejection-actions {
    margin-top: 10px;
}

.scholarships-submissions .btn-xs {
    padding: 6px 12px;
    font-size: 13px;
}

.scholarships-submissions .submission-pending-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

/* Scholarships - Submit */
.scholarships-submit {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.scholarships-submit .submission-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.scholarships-submit .submission-header h1 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 32px;
}

.scholarships-submit .submission-header-subtitle {
    opacity: 0.9;
    margin: 0;
}

.scholarships-submit .form-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.scholarships-submit .form-card h3 {
    margin-top: 0;
    color: #003366;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.scholarships-submit .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.scholarships-submit .form-group {
    margin-bottom: 20px;
}

.scholarships-submit .form-group.full-width {
    grid-column: 1 / -1;
}

.scholarships-submit .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.scholarships-submit .form-group label .required {
    color: red;
    margin-left: 3px;
}

.scholarships-submit .required {
    color: red;
}

.scholarships-submit .form-group input[type="text"],
.scholarships-submit .form-group input[type="email"],
.scholarships-submit .form-group input[type="url"],
.scholarships-submit .form-group input[type="number"],
.scholarships-submit .form-group input[type="date"],
.scholarships-submit .form-group select,
.scholarships-submit .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.scholarships-submit .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.scholarships-submit .form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.scholarships-submit .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scholarships-submit .checkbox-group input[type="checkbox"] {
    width: auto;
}

.scholarships-submit .checkbox-label {
    margin: 0;
}

.scholarships-submit .help-text {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
}

.scholarships-submit .help-text-compact {
    margin-bottom: 20px;
}

.scholarships-submit .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.scholarships-submit .action-buttons .action-primary {
    flex: 2;
}

.scholarships-submit .action-buttons .action-secondary {
    flex: 1;
}

.scholarships-submit .submission-errors-list {
    margin: 10px 0 0 20px;
}

.scholarships-submit .submission-filters-note {
    color: #666;
    font-size: 14px;
}

.submission-verification-container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.submission-verification-card {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 40px;
    border-radius: 8px;
}

.submission-verification-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.submission-verification-title {
    color: #856404;
}

.submission-verification-actions {
    margin-top: 30px;
}

.submission-verification-link {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .scholarships-submit .form-row {
        grid-template-columns: 1fr;
    }

    .scholarships-submit .action-buttons {
        flex-direction: column;
    }
}

/* Scholarships - External Directory */
.scholarships-external {
    padding-top: 30px;
}

.scholarships-external .hero-section {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
}

.scholarships-external .hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.scholarships-external .hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.scholarships-external .search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.scholarships-external .search-box input {
    flex: 1;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
}

.scholarships-external .search-box button {
    padding: 15px 30px;
    font-size: 18px;
    white-space: nowrap;
}

.scholarships-external .stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.scholarships-external .stat-item {
    text-align: center;
}

.scholarships-external .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #ffc107;
}

.scholarships-external .stat-label {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}

.scholarships-external .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.scholarships-external .category-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.scholarships-external .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.scholarships-external .category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.scholarships-external .category-card h3 {
    margin: 10px 0;
    color: #003366;
}

.scholarships-external .category-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.scholarships-external .scholarship-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.scholarships-external .scholarship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.scholarships-external .scholarship-card h3 {
    color: #003366;
    margin: 0 0 10px 0;
    font-size: 20px;
}

.scholarships-external .scholarship-card .organization {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.scholarships-external .scholarship-card .amount {
    font-size: 24px;
    color: #28a745;
    font-weight: bold;
    margin: 10px 0;
}

.scholarships-external .scholarship-card .deadline {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 15px;
}

.scholarships-external .scholarship-card .description {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 15px;
}

.scholarships-external .scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.scholarships-external .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scholarships-external .section-header h2 {
    color: #003366;
    margin: 0;
}

.scholarships-external .external-section-header {
    margin-top: 50px;
}

.scholarships-external .featured-badge {
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.scholarships-external .external-category-title {
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
}

.scholarships-external .btn-wide {
    width: 100%;
}

.scholarships-external .external-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.scholarships-external .external-cta-title {
    color: #003366;
    margin-bottom: 20px;
}

.scholarships-external .external-cta-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.scholarships-external .external-cta-secondary {
    margin-left: 15px;
}

.scholarships-external .external-provider-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.scholarships-external .external-provider-title {
    color: white;
    margin-bottom: 15px;
}

.scholarships-external .external-provider-text {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.scholarships-external .provider-action-primary {
    background: white;
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.scholarships-external .provider-action-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.scholarships-external .provider-pending {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}

.scholarships-external .provider-pending p {
    margin: 0 0 15px 0;
}

.scholarships-external .provider-hint {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.scholarships-external .provider-login {
    margin-right: 10px;
}

/* Scholarships - Browse */
.scholarships-browse {
    display: flex;
    gap: 30px;
    margin: 30px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.scholarships-browse .filter-sidebar {
    flex: 0 0 280px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.scholarships-browse .filter-sidebar h3 {
    margin: 0 0 20px 0;
    color: #003366;
    font-size: 20px;
}

.scholarships-browse .filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.scholarships-browse .filter-group:last-child {
    border-bottom: none;
}

.scholarships-browse .filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.scholarships-browse .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.scholarships-browse .filter-group input[type="text"],
.scholarships-browse .filter-group input[type="number"],
.scholarships-browse .filter-group input[type="date"],
.scholarships-browse .filter-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.scholarships-browse .filter-group input[type="number"] {
    width: 100%;
}

.scholarships-browse .amount-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.scholarships-browse .amount-range input {
    flex: 1;
}

.scholarships-browse .results-container {
    flex: 1;
    min-width: 0;
}

.scholarships-browse .results-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.scholarships-browse .results-count {
    font-size: 18px;
    color: #333;
}

.scholarships-browse .sort-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.scholarships-browse .sort-options label {
    font-weight: 600;
    color: #666;
}

.scholarships-browse .sort-options select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.scholarships-browse .scholarship-list {
    display: grid;
    gap: 20px;
}

.scholarships-browse .scholarship-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
}

.scholarships-browse .scholarship-item:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scholarships-browse .scholarship-main {
    flex: 1;
}

.scholarships-browse .scholarship-item h3 {
    color: #003366;
    margin: 0 0 10px 0;
    font-size: 22px;
}

.scholarships-browse .scholarship-item h3 a {
    color: #003366;
    text-decoration: none;
}

.scholarships-browse .scholarship-item h3 a:hover {
    color: #0066cc;
}

.scholarships-browse .organization {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.scholarships-browse .scholarship-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.scholarships-browse .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.scholarships-browse .scholarship-description {
    color: #555;
    line-height: 1.6;
    margin: 15px 0;
}

.scholarships-browse .scholarship-sidebar {
    flex: 0 0 200px;
    text-align: right;
}

.scholarships-browse .award-amount {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.scholarships-browse .deadline-info {
    font-size: 14px;
    margin-bottom: 15px;
}

.scholarships-browse .no-results {
    background: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
}

.scholarships-browse .no-results h3 {
    color: #003366;
    margin-bottom: 15px;
}

.scholarships-browse .filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.scholarships-browse .filter-apply {
    flex: 1;
}

.scholarships-browse .active-filters {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.scholarships-browse .filter-tag {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
    margin: 5px;
}

.scholarships-browse .filter-label-top {
    margin-top: 10px;
}

.scholarships-browse .filter-hint {
    color: #666;
    font-size: 12px;
}

.scholarships-browse .filters-clear {
    margin-left: 10px;
    color: #0066cc;
}

.scholarships-browse .tracking-actions {
    margin-top: 15px;
}

.scholarships-browse .tracking-box {
    background: #e8f5e9;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.scholarships-browse .tracking-view-btn {
    margin-bottom: 8px;
}

.scholarships-browse .tracking-label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.scholarships-browse .tracking-select {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
}

.scholarships-browse .browse-pagination {
    margin-top: 30px;
}

@media (max-width: 992px) {
    .scholarships-browse {
        flex-direction: column;
    }

    .scholarships-browse .filter-sidebar {
        position: static;
    }

    .scholarships-browse .scholarship-item {
        flex-direction: column;
    }

    .scholarships-browse .scholarship-sidebar {
        text-align: left;
    }
}

/* Scholarships - External Details */
.scholarships-detail.details-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.scholarships-detail .scholarship-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 40px;
    border-radius: 8px 8px 0 0;
}

.scholarships-detail .scholarship-header h1 {
    margin: 0 0 15px 0;
    font-size: 36px;
    color: white;
}

.scholarships-detail .scholarship-header .organization {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.scholarships-detail .header-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.scholarships-detail .meta-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.scholarships-detail .content-layout {
    display: flex;
    gap: 30px;
    margin-top: -1px;
}

.scholarships-detail .main-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 0 0 0 8px;
}

.scholarships-detail .sidebar-content {
    flex: 0 0 350px;
    background: white;
    padding: 30px;
    border-radius: 0 0 8px 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.scholarships-detail .sidebar-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.scholarships-detail .sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.scholarships-detail .sidebar-section h3 {
    color: #003366;
    margin: 0 0 15px 0;
    font-size: 18px;
}

.scholarships-detail .award-display {
    font-size: 40px;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0 20px 0;
}

.scholarships-detail .deadline-display {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.scholarships-detail .deadline-display.urgent {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.scholarships-detail .deadline-display h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
}

.scholarships-detail .deadline-display .date {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
}

.scholarships-detail .deadline-display .countdown {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.scholarships-detail .action-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    display: block;
}

.scholarships-detail .tracking-status {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.scholarships-detail .tracking-status.tracked {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.scholarships-detail .info-grid {
    display: grid;
    gap: 10px;
}

.scholarships-detail .info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.scholarships-detail .info-label {
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.scholarships-detail .info-value {
    color: #333;
}

.scholarships-detail .content-section {
    margin-bottom: 40px;
}

.scholarships-detail .content-section h2 {
    color: #003366;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
    font-size: 24px;
}

.scholarships-detail .content-section h3 {
    color: #003366;
    margin: 25px 0 15px 0;
    font-size: 20px;
}

.scholarships-detail .content-section p,
.scholarships-detail .content-section ul {
    line-height: 1.8;
    color: #555;
}

.scholarships-detail .content-section ul {
    padding-left: 25px;
}

.scholarships-detail .content-section li {
    margin-bottom: 8px;
}

.scholarships-detail .external-link-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.scholarships-detail .stats-display {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.scholarships-detail .stat-item {
    text-align: center;
}

.scholarships-detail .stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}

.scholarships-detail .stat-label {
    font-size: 12px;
    color: #666;
}

.scholarships-detail .alert-link-spaced {
    margin-left: 15px;
}

.scholarships-detail .award-description {
    color: #666;
    font-size: 14px;
}

.scholarships-detail .tracking-label {
    display: block;
    font-size: 13px;
    color: #555;
}

.scholarships-detail .tracking-select {
    width: 100%;
    padding: 8px;
}

.scholarships-detail .tracking-actions {
    margin-bottom: 10px;
}

/* Admin - Roles & Permissions */
.admin-roles .permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
}

.admin-roles .permission-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
}

.admin-roles .permission-checkbox {
    margin-right: 10px;
}

.admin-roles .permission-desc {
    color: #6c757d;
}

.admin-roles .permissions-actions {
    margin-top: 20px;
}

/* Admin - Email Templates */
.admin-email-templates .template-create-card {
    padding: 16px;
    margin-bottom: 20px;
}

.admin-email-templates .template-create-title {
    margin-top: 0;
}

.admin-email-templates .template-help {
    color: #6c757d;
    display: block;
    margin-top: 6px;
}

.admin-email-templates .template-form-spacing {
    margin-top: 12px;
}

.admin-email-templates .template-editor-spacing {
    margin-top: 20px;
}

.admin-email-templates .template-textarea {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.admin-email-templates .template-create-actions,
.admin-email-templates .template-save-actions {
    margin-top: 12px;
}

.admin-email-templates .template-save-actions {
    margin-top: 20px;
}

.admin-email-templates .template-link {
    display: block;
    margin-bottom: 6px;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    text-decoration: none;
    color: #003366;
}

.admin-email-templates .template-link.active {
    background: #003366;
    color: #fff;
}

/* Admin - Discount Codes */
.admin-discount-codes .discount-inline-form {
    display: inline-block;
}

/* Admin - Reports */
.admin-reports .report-row-spaced {
    margin-top: 20px;
}

.admin-reports .report-section-title {
    margin-top: 0;
}

.admin-reports .report-actions {
    margin-top: 30px;
}

/* Admin - Activity Log */
.admin-activity-log .activity-log-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.admin-activity-log .activity-log-subtitle {
    margin: 0;
    opacity: 0.9;
}

.admin-activity-log .filters-panel {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.admin-activity-log .filter-title {
    margin-top: 0;
}

.admin-activity-log .filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.admin-activity-log .filter-group {
    flex: 1;
    min-width: 200px;
}

.admin-activity-log .filter-actions {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.admin-activity-log .log-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-activity-log .log-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-activity-log .log-table th {
    background: #667eea;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.admin-activity-log .log-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
}

.admin-activity-log .log-table tr:hover {
    background: #f8f9fa;
}

.admin-activity-log .user-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-activity-log .user-badge.applicant {
    background: #e3f2fd;
    color: #1976d2;
}

.admin-activity-log .user-badge.admin {
    background: #f3e5f5;
    color: #7b1fa2;
}

.admin-activity-log .user-badge.coach {
    background: #e8f5e9;
    color: #388e3c;
}

.admin-activity-log .user-badge.system {
    background: #fce4ec;
    color: #c2185b;
}

.admin-activity-log .action-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.admin-activity-log .action-badge.login {
    background: #e8f5e9;
    color: #2e7d32;
}

.admin-activity-log .action-badge.logout {
    background: #e0e0e0;
    color: #616161;
}

.admin-activity-log .action-badge.failed {
    background: #ffebee;
    color: #c62828;
}

.admin-activity-log .action-badge.create,
.admin-activity-log .action-badge.update {
    background: #fff3e0;
    color: #e65100;
}

.admin-activity-log .action-badge.delete {
    background: #fce4ec;
    color: #c2185b;
}

.admin-activity-log .details-cell {
    max-width: 300px;
    font-size: 13px;
    color: #666;
}

.admin-activity-log .pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.admin-activity-log .pagination a,
.admin-activity-log .pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #667eea;
}

.admin-activity-log .pagination a:hover {
    background: #667eea;
    color: white;
}

.admin-activity-log .pagination .current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.admin-activity-log .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.admin-activity-log .stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-activity-log .stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.admin-activity-log .stat-card .stat-value {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

.admin-activity-log .stat-value-success {
    color: #4caf50;
}

.admin-activity-log .stat-value-danger {
    color: #f44336;
}

.admin-activity-log .stat-value-warning {
    color: #ff9800;
}

.admin-activity-log .log-empty-cell {
    text-align: center;
    padding: 40px;
    color: #999;
}

.admin-activity-log .log-time {
    white-space: nowrap;
}

.admin-activity-log .log-time-subtle,
.admin-activity-log .log-user-email,
.admin-activity-log .log-entity-meta {
    color: #999;
}

.admin-activity-log .log-user-missing,
.admin-activity-log .log-entity-missing,
.admin-activity-log .log-details-missing {
    color: #ccc;
}

.admin-activity-log .log-ip {
    font-family: monospace;
    font-size: 12px;
}

.admin-activity-log .log-footer {
    text-align: center;
    color: #999;
    margin-top: 30px;
}

/* Admin - Moderation Queue */
.admin-moderation-queue .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-moderation-queue .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.admin-moderation-queue .stat-card.warning {
    border-left-color: #ffc107;
}

.admin-moderation-queue .stat-card.danger {
    border-left-color: #dc3545;
}

.admin-moderation-queue .stat-card.success {
    border-left-color: #28a745;
}

.admin-moderation-queue .stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.admin-moderation-queue .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.admin-moderation-queue .queue-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.admin-moderation-queue .queue-item.critical {
    border-left-color: #dc3545;
}

.admin-moderation-queue .queue-item.high {
    border-left-color: #fd7e14;
}

.admin-moderation-queue .queue-item.low {
    border-left-color: #6c757d;
}

.admin-moderation-queue .queue-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.admin-moderation-queue .priority-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-moderation-queue .priority-critical {
    background: #dc3545;
    color: white;
}

.admin-moderation-queue .priority-high {
    background: #fd7e14;
    color: white;
}

.admin-moderation-queue .priority-normal {
    background: #17a2b8;
    color: white;
}

.admin-moderation-queue .priority-low {
    background: #6c757d;
    color: white;
}

.admin-moderation-queue .sla-indicator {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.admin-moderation-queue .sla-ok {
    background: #d4edda;
    color: #155724;
}

.admin-moderation-queue .sla-warning {
    background: #fff3cd;
    color: #856404;
}

.admin-moderation-queue .sla-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-moderation-queue .content-preview {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    max-height: 200px;
    overflow-y: auto;
}

.admin-moderation-queue .content-preview-image {
    max-width: 200px;
    max-height: 200px;
}

.admin-moderation-queue .meta-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.admin-moderation-queue .action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.admin-moderation-queue .filters-bar {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.admin-moderation-queue .filter-group {
    flex: 1;
    min-width: 200px;
}

.admin-moderation-queue .filter-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.admin-moderation-queue .pagination {
    margin-top: 2rem;
}

.admin-moderation-queue .inline-form {
    display: inline;
}

/* Admin - Moderation Appeals */
.admin-moderation-appeals .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-moderation-appeals .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    text-align: center;
}

.admin-moderation-appeals .stat-card.warning {
    border-left-color: #ffc107;
}

.admin-moderation-appeals .stat-card.success {
    border-left-color: #28a745;
}

.admin-moderation-appeals .stat-card.danger {
    border-left-color: #dc3545;
}

.admin-moderation-appeals .stat-value {
    font-size: 2rem;
    font-weight: bold;
}

.admin-moderation-appeals .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.admin-moderation-appeals .appeal-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.admin-moderation-appeals .appeal-card.under_review {
    border-left-color: #17a2b8;
}

.admin-moderation-appeals .appeal-card.upheld {
    border-left-color: #6c757d;
}

.admin-moderation-appeals .appeal-card.overturned {
    border-left-color: #28a745;
}

.admin-moderation-appeals .original-decision {
    background: #f8d7da;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.admin-moderation-appeals .appeal-reason {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.admin-moderation-appeals .action-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Admin - Data Deletion Requests */
.admin-deletion-requests .stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid transparent;
}

.admin-deletion-requests .stat-card h3 {
    margin: 0;
    font-size: 2em;
    color: #333;
}

.admin-deletion-requests .stat-card p {
    margin: 10px 0 0 0;
    color: #666;
}

.admin-deletion-requests .stat-card.warning {
    border-top-color: #ffc107;
}

.admin-deletion-requests .stat-card.info {
    border-top-color: #17a2b8;
}

.admin-deletion-requests .stat-card.success {
    border-top-color: #28a745;
}

.admin-deletion-requests .stat-card.muted {
    border-top-color: #6c757d;
}

.admin-deletion-requests .request-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-deletion-requests .request-card.danger {
    border-left: 4px solid #dc3545;
}

.admin-deletion-requests .request-card.warning {
    border-left: 4px solid #ffc107;
}

/* Admin - Featured Athletes */
.admin-featured-athletes .stat-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid transparent;
}

.admin-featured-athletes .stat-card.pending {
    border-top-color: #ffc107;
}

.admin-featured-athletes .stat-card.approved {
    border-top-color: #28a745;
}

.admin-featured-athletes .stat-card.rejected {
    border-top-color: #dc3545;
}

.admin-featured-athletes .stat-card.removed {
    border-top-color: #6c757d;
}

.admin-featured-athletes .request-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-featured-athletes .request-card.pending {
    border-left: 4px solid #ffc107;
}

.admin-featured-athletes .request-card.approved {
    border-left: 4px solid #28a745;
}

.admin-featured-athletes .request-card.rejected {
    border-left: 4px solid #dc3545;
}

.admin-featured-athletes .request-card.removed {
    border-left: 4px solid #6c757d;
}

/* Admin - Stripe Webhook */
.admin-stripe-webhook .webhook-log {
    white-space: pre-wrap;
    margin: 0;
}

.admin-stripe-webhook .webhook-missing {
    margin-top: 8px;
}

/* Admin - Applications */
.admin-applications .filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.admin-applications .filters-group {
    margin: 0;
}

.admin-applications .filters-actions {
    margin: 0;
    display: flex;
    align-items: flex-end;
}

.admin-applications .filters-apply {
    margin-right: 10px;
}

.admin-applications .applications-empty {
    text-align: center;
    color: #6c757d;
    padding: 40px 0;
}

.admin-applications .application-email,
.admin-applications .application-muted {
    color: #6c757d;
}

.admin-applications .application-review-btn {
    padding: 6px 12px;
}

/* Admin - College Applications */
.admin-college-applications .admin-college-applications__header {
    margin-bottom: 20px;
}

.admin-college-applications .admin-college-applications__stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.admin-college-applications .admin-college-applications__stat-card {
    text-align: center;
    padding: 15px;
}

.admin-college-applications .admin-college-applications__stat-value {
    font-size: 28px;
    margin: 0;
}

.admin-college-applications .admin-college-applications__stat-value--total {
    color: #003366;
}

.admin-college-applications .admin-college-applications__stat-value--accepted {
    color: #28a745;
}

.admin-college-applications .admin-college-applications__stat-value--submitted {
    color: #007bff;
}

.admin-college-applications .admin-college-applications__stat-value--in-progress {
    color: #ffc107;
}

.admin-college-applications .admin-college-applications__stat-value--aid {
    color: #6610f2;
}

.admin-college-applications .admin-college-applications__stat-value--scholarships {
    color: #20c997;
}

.admin-college-applications .admin-college-applications__stat-label {
    color: #6c757d;
    margin: 5px 0 0 0;
    font-size: 13px;
}

.admin-college-applications .admin-college-applications__filters {
    margin-bottom: 25px;
}

.admin-college-applications .admin-college-applications__filters-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}

.admin-college-applications .admin-college-applications__filter-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.admin-college-applications .admin-college-applications__filters-submit {
    margin-bottom: 0;
}

.admin-college-applications .admin-college-applications__empty-state {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.admin-college-applications .admin-college-applications__table-scroll {
    overflow-x: auto;
}

.admin-college-applications .admin-college-applications__applicant-email,
.admin-college-applications .admin-college-applications__aid-muted {
    color: #6c757d;
}

.admin-college-applications .admin-college-applications__pagination {
    margin-top: 20px;
}

.admin-college-applications .admin-college-applications__pagination-status {
    margin: 0 15px;
}

/* Admin - College Coaches */
.admin-college-coaches .empty-state {
    text-align: center;
    color: #6c757d;
    padding: 40px 0;
}

.admin-college-coaches .coach-request-card {
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.admin-college-coaches .coach-request-title {
    margin-top: 0;
}

.admin-college-coaches .coach-request-email {
    margin: 0 0 10px 0;
    color: #6c757d;
}

.admin-college-coaches .coach-request-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.admin-college-coaches .coach-request-actions {
    display: flex;
    gap: 10px;
}

.admin-college-coaches .reviewed-table {
    overflow-x: auto;
}

.admin-college-coaches .coach-email-muted {
    color: #6c757d;
}

/* Admin - School Coach Edit */
.admin-school-coach-edit {
    max-width: 900px;
    margin: 0 auto;
}

.admin-school-coach-edit .form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-coach-edit .breadcrumb {
    opacity: 0.9;
    margin-top: 10px;
}

.admin-school-coach-edit .breadcrumb a {
    color: white;
    text-decoration: underline;
}

.admin-school-coach-edit .form-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-coach-edit .form-section {
    margin-bottom: 35px;
}

.admin-school-coach-edit .form-section h2 {
    font-size: 1.3em;
    color: #667eea;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.admin-school-coach-edit .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.admin-school-coach-edit .form-group {
    margin-bottom: 20px;
}

.admin-school-coach-edit .form-group.full-width {
    grid-column: 1 / -1;
}

.admin-school-coach-edit .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-school-coach-edit .form-group input,
.admin-school-coach-edit .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.admin-school-coach-edit .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-school-coach-edit .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.admin-school-coach-edit .checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.admin-school-coach-edit .form-help {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.admin-school-coach-edit .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-coach-edit .btn-primary {
    background: #667eea;
    color: white;
}

.admin-school-coach-edit .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-coach-edit .form-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.admin-school-coach-edit .required-indicator {
    color: #dc3545;
}

/* Admin - School Coaches */
.admin-school-coaches .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-coaches .page-header h1 {
    margin: 0 0 5px 0;
    font-size: 2em;
}

.admin-school-coaches .breadcrumb {
    opacity: 0.9;
    margin-top: 10px;
}

.admin-school-coaches .breadcrumb a {
    color: white;
    text-decoration: underline;
}

.admin-school-coaches .action-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.admin-school-coaches .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-coaches .btn-primary {
    background: #667eea;
    color: white;
}

.admin-school-coaches .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-coaches .coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.admin-school-coaches .coach-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-coaches .coach-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.admin-school-coaches .coach-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #667eea;
    flex-shrink: 0;
}

.admin-school-coaches .coach-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.admin-school-coaches .coach-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    color: #333;
}

.admin-school-coaches .coach-title {
    color: #666;
    font-size: 0.9em;
}

.admin-school-coaches .coach-contact {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.admin-school-coaches .contact-item {
    margin: 8px 0;
    font-size: 0.9em;
    color: #666;
}

.admin-school-coaches .badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
}

.admin-school-coaches .badge-success {
    background: #d4edda;
    color: #155724;
}

.admin-school-coaches .badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-school-coaches .badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.admin-school-coaches .coach-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.admin-school-coaches .no-coaches {
    background: white;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-coaches .admin-school-coaches__empty-text {
    color: #666;
    margin: 20px 0;
}

.admin-school-coaches .coach-badges {
    margin-top: 5px;
}

.admin-school-coaches .coach-bio {
    color: #666;
    font-size: 0.9em;
    margin: 15px 0;
}

.admin-school-coaches .inline-form {
    display: inline;
}

/* Admin - School Feedback */
.admin-school-feedback .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-feedback .filter-tabs {
    display: flex;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.admin-school-feedback .filter-tab {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
}

.admin-school-feedback .filter-tab.active {
    background: #667eea;
    color: white;
}

.admin-school-feedback .feedback-list {
    display: grid;
    gap: 20px;
}

.admin-school-feedback .feedback-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.admin-school-feedback .feedback-card.pending {
    border-left-color: #ffc107;
}

.admin-school-feedback .feedback-card.approved {
    border-left-color: #28a745;
}

.admin-school-feedback .feedback-card.rejected {
    border-left-color: #dc3545;
}

.admin-school-feedback .feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-school-feedback .school-info h3 {
    margin: 0 0 5px 0;
    color: #667eea;
}

.admin-school-feedback .badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.admin-school-feedback .badge-warning {
    background: #fff3cd;
    color: #856404;
}

.admin-school-feedback .badge-success {
    background: #d4edda;
    color: #155724;
}

.admin-school-feedback .badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-school-feedback .feedback-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.admin-school-feedback .feedback-meta {
    color: #666;
    font-size: 0.9em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.admin-school-feedback .feedback-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-school-feedback .btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-feedback .btn-success {
    background: #28a745;
    color: white;
}

.admin-school-feedback .btn-danger {
    background: #dc3545;
    color: white;
}

.admin-school-feedback .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-feedback .no-feedback {
    background: white;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-feedback .admin-school-feedback__empty-text,
.admin-school-feedback .feedback-location {
    color: #666;
}

.admin-school-feedback .inline-form {
    display: inline;
}

/* Admin - School Program Edit */
.admin-school-program-edit {
    max-width: 900px;
    margin: 0 auto;
}

.admin-school-program-edit .form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-program-edit .form-header h1 {
    margin: 0;
    font-size: 2em;
}

.admin-school-program-edit .breadcrumb {
    opacity: 0.9;
    margin-top: 10px;
}

.admin-school-program-edit .breadcrumb a {
    color: white;
    text-decoration: underline;
}

.admin-school-program-edit .form-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-program-edit .form-section {
    margin-bottom: 35px;
}

.admin-school-program-edit .form-section h2 {
    font-size: 1.3em;
    color: #667eea;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.admin-school-program-edit .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.admin-school-program-edit .form-group {
    margin-bottom: 20px;
}

.admin-school-program-edit .form-group.full-width {
    grid-column: 1 / -1;
}

.admin-school-program-edit .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.admin-school-program-edit .form-group input[type="text"],
.admin-school-program-edit .form-group input[type="number"],
.admin-school-program-edit .form-group select,
.admin-school-program-edit .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.admin-school-program-edit .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-school-program-edit .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-school-program-edit .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.admin-school-program-edit .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.admin-school-program-edit .form-help {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.admin-school-program-edit .form-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.admin-school-program-edit .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-program-edit .btn-primary {
    background: #667eea;
    color: white;
}

.admin-school-program-edit .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-program-edit .form-group-spaced {
    margin-top: 15px;
}

.admin-school-program-edit .optional-indicator {
    color: #999;
}

.admin-school-program-edit .required-indicator {
    color: #dc3545;
}

/* Admin - School Programs */
.admin-school-programs .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-programs .page-header h1 {
    margin: 0 0 5px 0;
    font-size: 2em;
}

.admin-school-programs .breadcrumb {
    opacity: 0.9;
    margin-top: 10px;
}

.admin-school-programs .breadcrumb a {
    color: white;
    text-decoration: underline;
}

.admin-school-programs .action-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.admin-school-programs .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-programs .btn-primary {
    background: #667eea;
    color: white;
}

.admin-school-programs .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-programs .programs-grid {
    display: grid;
    gap: 20px;
}

.admin-school-programs .program-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-programs .program-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-school-programs .program-title h3 {
    margin: 0 0 5px 0;
    font-size: 1.4em;
    color: #667eea;
}

.admin-school-programs .program-type {
    color: #666;
    font-size: 0.95em;
}

.admin-school-programs .program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.admin-school-programs .detail-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.admin-school-programs .detail-label {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 5px;
}

.admin-school-programs .detail-value {
    font-weight: 600;
}

.admin-school-programs .badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 5px;
}

.admin-school-programs .badge-success {
    background: #d4edda;
    color: #155724;
}

.admin-school-programs .badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.admin-school-programs .badge-warning {
    background: #fff3cd;
    color: #856404;
}

.admin-school-programs .program-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-school-programs .no-programs {
    background: white;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-school-programs .admin-school-programs__empty-text {
    color: #666;
    margin: 20px 0;
}

.admin-school-programs .program-sports {
    margin: 15px 0;
}

.admin-school-programs .program-description {
    margin-top: 15px;
    color: #666;
}

.admin-school-programs .inline-form {
    display: inline;
}

/* Admin - School Edit */
.admin-school-edit {
    max-width: 1000px;
    margin: 0 auto;
}

.admin-school-edit .form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-school-edit .form-header h1 {
    margin: 0;
    font-size: 2em;
}

.admin-school-edit .form-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.admin-school-edit .form-section {
    margin-bottom: 40px;
}

.admin-school-edit .form-section:last-child {
    margin-bottom: 0;
}

.admin-school-edit .form-section h2 {
    font-size: 1.5em;
    color: #667eea;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.admin-school-edit .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.admin-school-edit .form-group {
    margin-bottom: 20px;
}

.admin-school-edit .form-group.full-width {
    grid-column: 1 / -1;
}

.admin-school-edit .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.admin-school-edit .form-group label .optional {
    font-weight: normal;
    color: #999;
    font-size: 0.9em;
}

.admin-school-edit .form-group input[type="text"],
.admin-school-edit .form-group input[type="number"],
.admin-school-edit .form-group input[type="url"],
.admin-school-edit .form-group input[type="tel"],
.admin-school-edit .form-group select,
.admin-school-edit .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.admin-school-edit .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-school-edit .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.admin-school-edit .checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.admin-school-edit .form-help {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.admin-school-edit .form-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.admin-school-edit .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-school-edit .btn-primary {
    background: #667eea;
    color: white;
}

.admin-school-edit .btn-primary:hover {
    background: #5568d3;
}

.admin-school-edit .btn-secondary {
    background: #6c757d;
    color: white;
}

.admin-school-edit .btn-secondary:hover {
    background: #5a6268;
}

.admin-school-edit .alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.admin-school-edit .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.admin-school-edit .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.admin-school-edit .input-group {
    display: flex;
    gap: 10px;
}

.admin-school-edit .input-group input {
    flex: 1;
}

.admin-school-edit .required-indicator {
    color: #dc3545;
}

/* Admin - Schools Manage */
.admin-schools-manage .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-schools-manage .admin-header h1 {
    margin: 0 0 10px 0;
    font-size: 2em;
}

.admin-schools-manage .action-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    align-items: center;
}

.admin-schools-manage .action-bar .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.admin-schools-manage .btn-primary {
    background: #667eea;
    color: white;
}

.admin-schools-manage .btn-primary:hover {
    background: #5568d3;
}

.admin-schools-manage .btn-success {
    background: #28a745;
    color: white;
}

.admin-schools-manage .btn-warning {
    background: #ffc107;
    color: #333;
}

.admin-schools-manage .btn-danger {
    background: #dc3545;
    color: white;
}

.admin-schools-manage .filter-form {
    flex: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-schools-manage .filter-form input,
.admin-schools-manage .filter-form select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.admin-schools-manage .filter-form input[type="text"] {
    flex: 1;
    min-width: 200px;
}

.admin-schools-manage .schools-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.admin-schools-manage .schools-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-schools-manage .schools-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.admin-schools-manage .schools-table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

.admin-schools-manage .schools-table tr:hover {
    background: #f8f9fa;
}

.admin-schools-manage .school-name {
    font-weight: 600;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

.admin-schools-manage .school-meta {
    color: #666;
    font-size: 0.9em;
}

.admin-schools-manage .badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.admin-schools-manage .badge-success {
    background: #d4edda;
    color: #155724;
}

.admin-schools-manage .badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-schools-manage .badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.admin-schools-manage .badge-warning {
    background: #fff3cd;
    color: #856404;
}

.admin-schools-manage .action-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-schools-manage .action-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

.admin-schools-manage .action-links a:hover {
    text-decoration: underline;
}

.admin-schools-manage .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.admin-schools-manage .pagination a,
.admin-schools-manage .pagination span {
    padding: 8px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #667eea;
    font-weight: 600;
}

.admin-schools-manage .pagination span.current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.admin-schools-manage .pagination a:hover {
    background: #f8f9fa;
}

.admin-schools-manage .stats-bar {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.admin-schools-manage .stat {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 5px;
}

.admin-schools-manage .stat .number {
    font-size: 1.5em;
    font-weight: 700;
}

.admin-schools-manage .stat .label {
    font-size: 0.9em;
    opacity: 0.9;
}

.admin-schools-manage .no-results {
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.admin-schools-manage .admin-schools-manage__empty {
    color: #999;
}

/* Admin - Verify Accounts */
.admin-verify-accounts {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.admin-verify-accounts .page-header {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
    color: white;
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.admin-verify-accounts .page-header h1 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 32px;
}

.admin-verify-accounts .verify-subtitle {
    opacity: 0.9;
    margin: 0;
}

.admin-verify-accounts .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-verify-accounts .stat-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.admin-verify-accounts .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #0066cc;
}

.admin-verify-accounts .stat-label {
    color: #666;
    margin-top: 5px;
}

.admin-verify-accounts .section-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-verify-accounts .section-card h2 {
    margin-top: 0;
    color: #003366;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.admin-verify-accounts .verification-card {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.admin-verify-accounts .verification-card h3 {
    margin: 0 0 15px 0;
    color: #856404;
    font-size: 20px;
}

.admin-verify-accounts .user-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 4px;
}

.admin-verify-accounts .info-item {
    font-size: 14px;
}

.admin-verify-accounts .info-item strong {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 3px;
}

.admin-verify-accounts .action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-verify-accounts .verified-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.admin-verify-accounts .verified-card:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.admin-verify-accounts .verified-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.admin-verify-accounts .verified-header h4 {
    margin: 0;
    color: #003366;
}

.admin-verify-accounts .role-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.admin-verify-accounts .role-school {
    background: #e7f3ff;
    color: #0066cc;
}

.admin-verify-accounts .role-coach {
    background: #d4edda;
    color: #155724;
}

.admin-verify-accounts .role-organization {
    background: #fff3cd;
    color: #856404;
}

.admin-verify-accounts .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.admin-verify-accounts .empty-state h3 {
    color: #003366;
    margin-bottom: 10px;
}

.admin-verify-accounts .empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.admin-verify-accounts .verification-checklist {
    background: white;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.admin-verify-accounts .verification-checklist-list {
    margin: 10px 0 0 20px;
}

.admin-verify-accounts .verify-inline-form {
    display: inline;
}

.admin-verify-accounts .verified-org {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.admin-verify-accounts .verified-meta {
    text-align: right;
    font-size: 13px;
    color: #666;
}

.admin-verify-accounts .verified-by {
    margin-top: 3px;
}

.admin-verify-accounts .verified-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.admin-verify-accounts .verify-footer {
    text-align: center;
    margin-top: 30px;
}

.admin-verify-accounts .verify-footer-link {
    margin-left: 10px;
}

/* Admin - External Scholarships */
.admin-external-scholarships .admin-external-scholarships__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-external-scholarships .admin-external-scholarships__header-actions {
    display: flex;
    gap: 10px;
}

.admin-external-scholarships .admin-external-scholarships__header-btn {
    white-space: nowrap;
}

.admin-external-scholarships .admin-external-scholarships__pending-count {
    background: rgba(255,255,255,0.3);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

.admin-external-scholarships .admin-external-scholarships__filters {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-external-scholarships .admin-external-scholarships__search {
    width: 300px;
}

.admin-external-scholarships .admin-external-scholarships__type {
    width: 200px;
}

.admin-external-scholarships .admin-external-scholarships__submitted-by {
    color: #666;
}

.admin-external-scholarships .admin-external-scholarships__featured-cell {
    text-align: center;
}

.admin-external-scholarships .admin-external-scholarships__featured-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
}

.admin-external-scholarships .admin-external-scholarships__actions-cell {
    white-space: nowrap;
}

.admin-external-scholarships .admin-external-scholarships__action-btn {
    padding: 6px 12px;
    font-size: 14px;
    display: inline-block;
    margin-right: 5px;
}

.admin-external-scholarships .admin-external-scholarships__action-btn--view {
    background: #17a2b8;
    color: white;
}

.admin-external-scholarships .admin-external-scholarships__action-btn--archive {
    background: #dc3545;
    color: white;
}

.admin-external-scholarships .admin-external-scholarships__inline-form {
    display: inline;
}

.admin-external-scholarships .admin-external-scholarships__inline-form--spaced {
    margin-right: 5px;
}

/* Admin - Data Retention */
.admin-data-retention .retention-stats-row {
    margin-bottom: 30px;
}

.admin-data-retention .retention-cleanup-form {
    margin-top: 15px;
}

.admin-data-retention .retention-form,
.admin-data-retention .retention-toggle-form {
    display: inline-block;
}

.admin-data-retention .retention-days-input {
    width: 80px;
}

.admin-data-retention .retention-footer {
    margin-top: 30px;
}

.admin-data-retention .stat-card {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.admin-data-retention .stat-card-info {
    background-color: #d1ecf1;
    border: 2px solid #bee5eb;
}

.admin-data-retention .stat-card-primary {
    background-color: #cfe2ff;
    border: 2px solid #9ec5fe;
}

.admin-data-retention .stat-card-success {
    background-color: #d1e7dd;
    border: 2px solid #badbcc;
}

.admin-data-retention .stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-data-retention .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.admin-data-retention .badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.admin-data-retention .badge-success {
    background-color: #28a745;
    color: white;
}

.admin-data-retention .badge-secondary {
    background-color: #6c757d;
    color: white;
}

.admin-data-retention .info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    margin-top: 30px;
}

.admin-data-retention .info-box h4 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.admin-data-retention .info-box ul {
    margin-left: 20px;
}

/* Admin - System Health */
.admin-system-health .system-health__note {
    margin-bottom: 20px;
}

.admin-system-health .system-health__overall {
    font-size: 18px;
    padding: 20px;
}

.admin-system-health .system-health__overall-meta {
    float: right;
    font-size: 14px;
}

.admin-system-health .system-health__checks-row {
    margin-bottom: 30px;
}

.admin-system-health .system-health__error-list {
    max-height: 150px;
    overflow-y: auto;
    font-size: 12px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
}

.admin-system-health .system-health__error-item {
    margin-bottom: 5px;
    word-break: break-all;
}

.admin-system-health .system-health__stats-row {
    margin-top: 20px;
}

.admin-system-health .system-health__footer {
    margin-top: 30px;
}

.admin-system-health .health-check-card {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
}

.admin-system-health .health-check-card.healthy {
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.admin-system-health .health-check-card.unhealthy {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.admin-system-health .health-check-card h3 {
    margin-top: 0;
    font-size: 20px;
}

.admin-system-health .status-message {
    font-size: 16px;
    margin: 10px 0;
}

.admin-system-health .health-details {
    margin-top: 15px;
    font-size: 14px;
}

.admin-system-health .health-details ul {
    margin: 5px 0;
    padding-left: 20px;
}

.admin-system-health .progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.admin-system-health .progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.admin-system-health .stat-card {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.admin-system-health .stat-card-primary {
    background-color: #cfe2ff;
    border: 2px solid #9ec5fe;
}

.admin-system-health .stat-card-info {
    background-color: #d1ecf1;
    border: 2px solid #bee5eb;
}

.admin-system-health .stat-card-success {
    background-color: #d1e7dd;
    border: 2px solid #badbcc;
}

.admin-system-health .stat-card-warning {
    background-color: #fff3cd;
    border: 2px solid #ffeaa7;
}

.admin-system-health .stat-card-danger {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
}

.admin-system-health .stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-system-health .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.admin-system-health .badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.admin-system-health .badge-success {
    background-color: #28a745;
    color: white;
}

.admin-system-health .badge-danger {
    background-color: #dc3545;
    color: white;
}

/* Admin - Security Monitor */
.admin-security-monitor .security-stats-row {
    margin-bottom: 30px;
}

.admin-security-monitor .security-divider {
    margin: 40px 0;
}

.admin-security-monitor .security-footer {
    margin-top: 20px;
}

.admin-security-monitor .stat-card {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.admin-security-monitor .stat-card-danger {
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
}

.admin-security-monitor .stat-card-warning {
    background-color: #fff3cd;
    border: 2px solid #ffeaa7;
}

.admin-security-monitor .stat-card-info {
    background-color: #d1ecf1;
    border: 2px solid #bee5eb;
}

.admin-security-monitor .stat-value {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.admin-security-monitor .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

.admin-security-monitor .badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.admin-security-monitor .badge-danger {
    background-color: #dc3545;
    color: white;
}

.admin-security-monitor .badge-warning {
    background-color: #ffc107;
    color: #333;
}

.admin-security-monitor .info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    margin-top: 20px;
}

/* Admin - Unlock Account */
.admin-unlock-account .unlock-divider {
    margin: 40px 0;
}

.admin-unlock-account .unlock-footer {
    margin-top: 20px;
}

/* Admin - Help Management */
.admin-help-manage .help-manage-new {
    float: right;
}

.admin-help-manage .help-inline-form {
    display: inline;
}

/* Admin - Application View */
.admin-application-view .application-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-application-view .application-label {
    margin: 10px 0;
}

.admin-application-view .application-value {
    margin: 0 0 15px 0;
}

.admin-application-view .application-text {
    color: #333;
}

.admin-application-view .application-muted {
    color: #666;
}

.admin-application-view .application-status-form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.admin-application-view .application-status-field {
    flex: 1;
}

.admin-application-view .application-status-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.admin-application-view .application-status-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.admin-application-view .application-empty {
    text-align: center;
    padding: 40px 0;
    color: #666;
}

.admin-application-view .application-response-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-application-view .application-response-card {
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #003366;
    border-radius: 4px;
}

.admin-application-view .application-response-title {
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #003366;
}

.admin-application-view .application-response-text {
    margin: 0;
    color: #333;
    white-space: pre-wrap;
}

.admin-application-view .application-score {
    text-align: center;
    font-weight: bold;
    color: #003366;
}

.admin-application-view .application-download-btn {
    padding: 6px 12px;
    font-size: 12px;
}

/* Root - Appeal Decision */
.appeal-decision-card {
    background-color: #f8f9fa;
}

/* Root - Payment Status */
.payment-status-icon {
    font-size: 64px;
}

/* Root - Resource Library */
.resources-page {
    padding-top: 30px;
}

.resources-page .library-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.resources-page .library-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 8px;
}

.resources-page .library-hero h1 {
    font-size: 42px;
    margin: 0 0 15px 0;
}

.resources-page .library-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.resources-page .search-bar {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.resources-page .search-bar input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
}

.resources-page .search-bar button {
    padding: 15px 30px;
    background: #ffc107;
    color: #333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.resources-page .categories-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.resources-page .category-chip {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.resources-page .category-chip:hover {
    border-color: #6a11cb;
    background: #f5f5f5;
}

.resources-page .category-chip.active {
    background: #6a11cb;
    border-color: #6a11cb;
    color: white;
}

.resources-page .filters-bar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.resources-page .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.resources-page .filter-group label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.resources-page .filter-group select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
}

.resources-page .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.resources-page .results-count {
    font-size: 18px;
    color: #666;
}

.resources-page .results-count strong {
    color: #333;
}

.resources-page .featured-section {
    margin-bottom: 50px;
}

.resources-page .featured-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.resources-page .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.resources-page .resource-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.resources-page .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.resources-page .resource-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.resources-page .resource-image.has-image {
    background-size: cover;
    background-position: center;
}

.resources-page .resource-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resources-page .resource-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.resources-page .resource-type {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.resources-page .type-article {
    background: #e3f2fd;
    color: #1976d2;
}

.resources-page .type-video {
    background: #fce4ec;
    color: #c2185b;
}

.resources-page .type-guide {
    background: #f3e5f5;
    color: #7b1fa2;
}

.resources-page .type-pdf {
    background: #fff3e0;
    color: #f57c00;
}

.resources-page .type-checklist {
    background: #e8f5e9;
    color: #388e3c;
}

.resources-page .type-template {
    background: #fff9c4;
    color: #f57f17;
}

.resources-page .resource-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.resources-page .resource-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.resources-page .resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.resources-page .resource-stats {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #999;
}

.resources-page .resource-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.resources-page .resource-link {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.resources-page .resource-link:hover {
    text-decoration: underline;
}

.resources-page .difficulty-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.resources-page .difficulty-beginner {
    background: #e8f5e9;
    color: #388e3c;
}

.resources-page .difficulty-intermediate {
    background: #fff3e0;
    color: #f57c00;
}

.resources-page .difficulty-advanced {
    background: #ffebee;
    color: #c62828;
}

.resources-page .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.resources-page .page-link {
    padding: 10px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.resources-page .page-link:hover {
    border-color: #6a11cb;
    color: #6a11cb;
}

.resources-page .page-link.active {
    background: #6a11cb;
    border-color: #6a11cb;
    color: white;
}

.resources-page .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.resources-page .empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Root - Home Landing */
.home-landing {
    --hub-ink: #10131a;
    --hub-mist: #eef2f7;
    --hub-ocean: #0b6b8c;
    --hub-ember: #ef6c41;
    --hub-lime: #b5e25a;
    --hub-night: #0c1f2d;
    --hub-glow: rgba(181, 226, 90, 0.35);
}

.home-landing .hub-hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(11, 107, 140, 0.45), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(239, 108, 65, 0.55), transparent 40%),
        linear-gradient(120deg, #0c1f2d 0%, #182a3a 45%, #182f43 100%);
    color: white;
    padding: 120px 0 140px;
    overflow: hidden;
}

.home-landing .hub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80") center/cover;
    opacity: 0.2;
    mix-blend-mode: screen;
}

.home-landing .hub-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.home-landing .hub-hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    line-height: 1.05;
}

.home-landing .hub-hero p {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.home-landing .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-landing .btn-hub-primary,
.home-landing .btn-hub-secondary {
    font-family: "Space Grotesk", sans-serif;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-landing .btn-hub-primary {
    background: var(--hub-lime);
    color: var(--hub-night);
    box-shadow: 0 10px 25px rgba(181, 226, 90, 0.25);
}

.home-landing .btn-hub-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
}

.home-landing .hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.home-landing .hero-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
}

.home-landing .hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.home-landing .hub-section {
    padding: 80px 0;
    background: white;
}

.home-landing .hub-section.alt {
    background: var(--hub-mist);
}

.home-landing .hub-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-landing .section-title {
    font-family: "Fraunces", serif;
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 18px;
    color: var(--hub-ink);
}

.home-landing .section-subtitle {
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    color: #52616b;
    max-width: 640px;
}

.home-landing .feature-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.home-landing .feature-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-landing .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.15);
}

.home-landing .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--hub-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.home-landing .feature-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    margin: 0;
    color: var(--hub-ink);
}

.home-landing .feature-card p {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: #5b6b75;
    font-size: 15px;
    line-height: 1.6;
}

.home-landing .feature-card a {
    margin-top: auto;
    color: var(--hub-ocean);
    text-decoration: none;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
}

.home-landing .value-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.home-landing .value-item {
    background: white;
    border-radius: 16px;
    padding: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    color: #2c3a42;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.home-landing .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.home-landing .stat-card {
    background: var(--hub-night);
    color: white;
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
}

.home-landing .stat-card strong {
    display: block;
    font-size: 32px;
    margin-bottom: 6px;
}

.home-landing .athlete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.home-landing .athlete-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.08);
}

.home-landing .athlete-card img {
    width: 100%;
    border-radius: 12px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
}

.home-landing .athlete-card h4 {
    margin: 0 0 6px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    color: var(--hub-ink);
}

.home-landing .athlete-card p {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: #5b6b75;
    font-size: 14px;
}

.home-landing .athlete-card--placeholder {
    max-width: 420px;
    margin-top: 24px;
}

.home-landing .steps-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.home-landing .step-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e3e8ef;
    font-family: "Space Grotesk", sans-serif;
    color: #2c3a42;
}

.home-landing .step-card span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7a8894;
}

.home-landing .final-cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.home-landing .final-cta h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(30px, 4vw, 40px);
    margin-bottom: 16px;
}

.home-landing .final-cta p {
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.home-landing .final-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.home-landing .cta-light {
    background: white;
    color: #111827;
    margin-right: 12px;
}

.home-landing .cta-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.home-landing .cta-note {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 12px;
}

.home-landing .cta-note.dark {
    color: #5b6b75;
}

.home-landing .hub-hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    grid-column: 1 / -1;
}

.home-landing .hub-hero-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .home-landing .hub-hero-inner {
        grid-template-columns: 1fr;
    }

    .home-landing .hub-hero-logo img {
        height: 160px;
    }

    .home-landing .hub-hero {
        padding: 90px 0 100px;
    }

    .home-landing .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-landing .final-cta a {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .home-landing .hub-hero-logo img {
        height: 120px;
    }
}

/* Shared - Help Widget */
.help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.help-toggle-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.help-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.help-toggle-btn svg {
    width: 24px;
    height: 24px;
}

.help-drawer {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    max-height: 600px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1000;
}

.help-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.help-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.help-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.help-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #666;
    transition: color 0.2s;
}

.help-close-btn:hover {
    color: #333;
}

.help-close-btn svg {
    width: 20px;
    height: 20px;
}

.help-hidden {
    display: none;
}

/* Help Widget - Search Box */
.help-search-container {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.help-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.help-search-input:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Help Widget - Content Area */
.help-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.help-topic h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.help-summary {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Help Widget - Bullets */
.help-bullets {
    margin-bottom: 20px;
}

.help-bullets h5 {
    margin: 0 0 8px 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.help-bullets ul {
    margin: 0;
    padding-left: 20px;
}

.help-bullets li {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

/* Help Widget - FAQ */
.help-faq {
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
    padding-top: 16px;
}

.help-faq h5 {
    margin: 0 0 8px 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.help-faq-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-faq-item {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.help-faq-question {
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.help-faq-question:hover {
    background: #f0f0f0;
}

.help-faq-question svg {
    width: 16px;
    height: 16px;
    color: #28a745;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.help-faq-question.active svg {
    transform: rotate(180deg);
}

.help-faq-answer {
    padding: 12px;
    background: white;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    border-top: 1px solid #e9ecef;
}

/* Help Widget - Empty State */
.help-empty {
    text-align: center;
    padding: 24px 16px;
    color: #999;
}

.help-empty p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.help-empty-small {
    font-size: 12px;
    color: #bbb;
}

/* Help Widget - Search Results */
.help-search-results {
    padding: 0 16px;
}

.help-search-result-item {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.2s;
}

.help-search-result-item:last-child {
    border-bottom: none;
}

.help-search-result-item:hover {
    background: #f8f9fa;
}

.help-search-result-title {
    font-weight: 500;
    color: #28a745;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.help-search-result-summary {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Help Widget - Mobile Responsive */
@media (max-width: 480px) {
    .help-drawer {
        width: calc(100% - 40px);
        bottom: 70px;
        right: 20px;
        left: 20px;
        max-height: 50vh;
    }

    .help-toggle-btn {
        width: 48px;
        height: 48px;
    }

    .help-toggle-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Shared - Profile Completeness */
.profile-completeness-progress {
    height: 25px;
}

/* Shared - Footer */
.footer-revision {
    margin-top: 10px;
    font-size: 12px;
}

/* Admin - Coach Subscriptions */
.admin-coach-subscriptions .coach-pricing-banner {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.admin-coach-subscriptions .coach-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-coach-subscriptions .coach-stats-card {
    text-align: center;
    padding: 20px;
}

.admin-coach-subscriptions .coach-stats-card.warning {
    border: 2px solid #ffc107;
}

.admin-coach-subscriptions .coach-stat-number {
    font-size: 36px;
    margin: 0;
    color: #003366;
}

.admin-coach-subscriptions .coach-stat-number.success {
    color: #28a745;
}

.admin-coach-subscriptions .coach-stat-number.warning {
    color: #856404;
}

.admin-coach-subscriptions .coach-stat-label {
    color: #6c757d;
    margin: 5px 0 0 0;
}

.admin-coach-subscriptions .filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-coach-subscriptions .filter-search {
    flex: 1;
    min-width: 200px;
}

.admin-coach-subscriptions .filter-status {
    min-width: 150px;
}

.admin-coach-subscriptions .empty-state {
    text-align: center;
    color: #6c757d;
    padding: 40px 0;
}

.admin-coach-subscriptions .table-scroll {
    overflow-x: auto;
}

.admin-coach-subscriptions .coach-email-muted,
.admin-coach-subscriptions .coach-position-muted,
.admin-coach-subscriptions .coach-muted {
    color: #6c757d;
}

.admin-coach-subscriptions .subscription-badge {
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.admin-coach-subscriptions .subscription-badge.trial {
    background: #17a2b8;
}

.admin-coach-subscriptions .subscription-badge.paid {
    background: #28a745;
}

.admin-coach-subscriptions .subscription-badge.manual {
    background: #6c757d;
}

.admin-coach-subscriptions .subscription-badge.expired {
    background: #dc3545;
}

.admin-coach-subscriptions .days-left.urgent {
    color: #dc3545;
    font-weight: bold;
}

.admin-coach-subscriptions .days-left.warning {
    color: #ffc107;
    font-weight: bold;
}

.admin-coach-subscriptions .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.admin-coach-subscriptions .modal-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.admin-coach-subscriptions .modal-title {
    margin-top: 0;
}

.admin-coach-subscriptions .modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.admin-coach-subscriptions .modal-days {
    display: none;
}

/* Admin - System Settings */
.admin-system-settings .pricing-info {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #0066cc;
}

.admin-system-settings .pricing-info-list {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.admin-system-settings .settings-table th.setting-col {
    width: 30%;
}

.admin-system-settings .settings-table th.value-col {
    width: 15%;
}

.admin-system-settings .settings-table th.desc-col {
    width: 35%;
}

.admin-system-settings .settings-table th.action-col {
    width: 20%;
}

.admin-system-settings .setting-key,
.admin-system-settings .setting-updated {
    color: #6c757d;
}

.admin-system-settings .pricing-value {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
}

.admin-system-settings .setting-description {
    font-size: 14px;
    color: #495057;
}

.admin-system-settings .settings-footer {
    margin-top: 30px;
}

.admin-system-settings .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.admin-system-settings .modal-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.admin-system-settings .modal-title {
    margin-top: 0;
}

.admin-system-settings .modal-hint {
    color: #6c757d;
    display: block;
    margin-top: 5px;
}

.admin-system-settings .modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Admin - Categories */
.admin-categories .categories-header {
    margin-bottom: 20px;
}

.admin-categories .category-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-categories .category-stat-card {
    text-align: center;
    padding: 20px;
}

.admin-categories .category-stat-value {
    font-size: 32px;
    margin: 0;
    color: #003366;
}

.admin-categories .category-stat-value.info {
    color: #007bff;
}

.admin-categories .category-stat-value.success {
    color: #28a745;
}

.admin-categories .category-stat-label {
    color: #6c757d;
    margin: 5px 0 0 0;
}

.admin-categories .category-empty-text {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.admin-categories .category-row {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-categories .category-row:hover {
    background: #f8f9fa;
}

.admin-categories .category-row.level-0 { margin-left: 0; }
.admin-categories .category-row.level-1 { margin-left: 30px; }
.admin-categories .category-row.level-2 { margin-left: 60px; }
.admin-categories .category-row.level-3 { margin-left: 90px; }
.admin-categories .category-row.level-4 { margin-left: 120px; }
.admin-categories .category-row.level-5 { margin-left: 150px; }

.admin-categories .category-info {
    flex: 1;
}

.admin-categories .category-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-categories .category-icon {
    font-size: 20px;
}

.admin-categories .category-name {
    font-size: 15px;
}

.admin-categories .category-parent,
.admin-categories .category-summary,
.admin-categories .category-help {
    color: #6c757d;
    font-size: 13px;
}

.admin-categories .category-actions {
    display: flex;
    gap: 5px;
}

.admin-categories .inline-form {
    display: inline;
}

.admin-categories .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.admin-categories .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-categories .modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-categories .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Admin - Resource Edit */
.admin-resource-edit .resource-edit-header {
    margin-bottom: 20px;
}

.admin-resource-edit .form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.admin-resource-edit .form-section h3 {
    margin-top: 0;
    color: #003366;
}

.admin-resource-edit .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.admin-resource-edit .form-group {
    margin-bottom: 15px;
}

.admin-resource-edit .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
}

.admin-resource-edit .form-group small {
    display: block;
    color: #6c757d;
    font-size: 13px;
    margin-top: 3px;
}

.admin-resource-edit textarea.form-control {
    min-height: 100px;
    font-family: inherit;
}

.admin-resource-edit textarea.form-control.tall {
    min-height: 300px;
}

.admin-resource-edit .resource-edit-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Admin - Resources Manage */
.admin-resources-manage .resources-header {
    margin-bottom: 20px;
}

.admin-resources-manage .resource-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.admin-resources-manage .resource-stat-card {
    text-align: center;
    padding: 15px;
}

.admin-resources-manage .resource-stat-value {
    font-size: 28px;
    margin: 0;
    color: #003366;
}

.admin-resources-manage .resource-stat-value.success { color: #28a745; }
.admin-resources-manage .resource-stat-value.warning { color: #ffc107; }
.admin-resources-manage .resource-stat-value.featured { color: #6610f2; }
.admin-resources-manage .resource-stat-value.info { color: #007bff; }
.admin-resources-manage .resource-stat-value.downloads { color: #20c997; }

.admin-resources-manage .resource-stat-label {
    color: #6c757d;
    margin: 5px 0 0 0;
    font-size: 13px;
}

.admin-resources-manage .resource-filters {
    margin-bottom: 25px;
}

.admin-resources-manage .resource-filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}

.admin-resources-manage .resource-filter-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.admin-resources-manage .resource-filter-submit {
    margin-bottom: 0;
}

.admin-resources-manage .resource-empty-text {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.admin-resources-manage .resource-empty-action {
    margin-top: 15px;
}

.admin-resources-manage .bulk-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.admin-resources-manage .bulk-action-select {
    width: 200px;
}

.admin-resources-manage .table-scroll {
    overflow-x: auto;
}

.admin-resources-manage .resource-featured-badge {
    margin-left: 5px;
}

.admin-resources-manage .resource-checkbox-col {
    width: 40px;
}

.admin-resources-manage .resource-description {
    color: #6c757d;
}

.admin-resources-manage .resource-stats {
    font-size: 13px;
}

.admin-resources-manage .pagination-bar {
    margin-top: 20px;
}

.admin-resources-manage .pagination-label {
    margin: 0 15px;
}

/* Admin - Login */
.admin-login .login-card {
    max-width: 500px;
    margin: 0 auto;
}

.admin-login .login-links {
    text-align: center;
    margin-top: 20px;
}

/* Admin - College Application View */
.admin-college-application-view .header-row {
    margin-bottom: 20px;
}

.admin-college-application-view .progress-section {
    margin-bottom: 25px;
}

.admin-college-application-view .progress-title {
    margin-bottom: 10px;
}

.admin-college-application-view .progress-note {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.admin-college-application-view .layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.admin-college-application-view .section-spaced {
    margin-bottom: 20px;
}

.admin-college-application-view .detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.admin-college-application-view .detail-item {
    padding: 8px 0;
}

.admin-college-application-view .detail-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 3px;
}

.admin-college-application-view .detail-value {
    font-size: 15px;
    color: #212529;
}

.admin-college-application-view .timeline-item {
    border-left: 3px solid #007bff;
    padding-left: 15px;
    margin-bottom: 15px;
    position: relative;
}

.admin-college-application-view .timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #007bff;
}

.admin-college-application-view .progress-bar-container {
    background: #e9ecef;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.admin-college-application-view .progress-bar-fill {
    background: linear-gradient(90deg, #007bff, #0056b3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    transition: width 0.3s;
}

.admin-college-application-view .deadline-upcoming {
    color: #6c757d;
}

.admin-college-application-view .deadline-past {
    color: #dc3545;
}

.admin-college-application-view .notes-box {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.admin-college-application-view .financial-value-success {
    color: #28a745;
    font-size: 18px;
    font-weight: 600;
}

.admin-college-application-view .financial-value-info {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
}

.admin-college-application-view .essay-empty {
    color: #6c757d;
}

.admin-college-application-view .essay-card {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.admin-college-application-view .essay-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.admin-college-application-view .essay-version {
    font-size: 13px;
    color: #6c757d;
}

.admin-college-application-view .essay-prompt {
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 3px;
}

.admin-college-application-view .essay-prompt-label {
    font-size: 13px;
    color: #6c757d;
}

.admin-college-application-view .essay-prompt-text {
    margin: 5px 0 0 0;
    font-size: 14px;
}

.admin-college-application-view .essay-preview {
    font-size: 14px;
    line-height: 1.6;
}

.admin-college-application-view .essay-ellipsis {
    color: #6c757d;
}

.admin-college-application-view .essay-meta {
    margin-top: 10px;
    font-size: 13px;
    color: #6c757d;
}

.admin-college-application-view .table-scroll {
    overflow-x: auto;
}

.admin-college-application-view .applicant-card {
    text-align: center;
    padding: 15px 0;
}

.admin-college-application-view .applicant-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
}

.admin-college-application-view .applicant-name {
    font-size: 16px;
}

.admin-college-application-view .applicant-email {
    font-size: 13px;
}

.admin-college-application-view .timeline-empty {
    color: #6c757d;
    font-size: 14px;
}

.admin-college-application-view .timeline-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.admin-college-application-view .timeline-notes {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 3px;
}

.admin-college-application-view .timeline-date {
    font-size: 12px;
    color: #6c757d;
}

/* Admin - Dashboard */
.admin-dashboard .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-dashboard .dashboard-card {
    text-align: center;
    padding: 20px;
}

.admin-dashboard .dashboard-card.warning {
    border: 2px solid #ffc107;
}

.admin-dashboard .dashboard-number {
    font-size: 36px;
    color: #003366;
    margin: 0;
}

.admin-dashboard .dashboard-number.warning {
    color: #856404;
}

.admin-dashboard .dashboard-label {
    color: #6c757d;
    margin: 5px 0 0 0;
}

.admin-dashboard .dashboard-subtext.success { color: #28a745; }
.admin-dashboard .dashboard-subtext.info { color: #17a2b8; }

.admin-dashboard .dashboard-warning-text {
    color: #856404;
    font-weight: bold;
}

.admin-dashboard .dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.admin-dashboard .dashboard-action-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-dashboard .dashboard-action-group {
    border-top: 1px solid #e1e5ea;
    padding-top: 10px;
}

.admin-dashboard .dashboard-action-group:first-child {
    border-top: 0;
    padding-top: 0;
}

.admin-dashboard .dashboard-action-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #003366;
}

.admin-dashboard .dashboard-action-with-badge {
    position: relative;
}

.admin-dashboard .dashboard-action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

.admin-dashboard .dashboard-email {
    color: #6c757d;
}

.admin-dashboard .dashboard-review-btn {
    padding: 6px 12px;
}

.admin-dashboard .dashboard-actions-footer {
    text-align: center;
    margin-top: 15px;
}

.scholarships-detail .report-button {
    font-size: 14px;
}

.scholarships-detail .details-back {
    margin-top: 30px;
    text-align: center;
}

.scholarships-detail .external-url {
    word-break: break-all;
    color: #0066cc;
}

.scholarships-detail .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.scholarships-detail .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}

.scholarships-detail .modal-content h3 {
    color: #003366;
    margin-top: 0;
}

.scholarships-detail .modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.scholarships-detail .modal-btn-primary {
    flex: 1;
}

@media (max-width: 992px) {
    .scholarships-detail .content-layout {
        flex-direction: column;
    }

    .scholarships-detail .sidebar-content {
        position: static;
    }

    .scholarships-detail .scholarship-header h1 {
        font-size: 28px;
    }
}

.required {
    color: #dc2626;
}

.hover-shadow {
    transition: box-shadow 0.3s ease-in-out;
}

.hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* College Coach Landing */
.recruit-hero {
    background: radial-gradient(circle at 10% 20%, #fbe8c5 0%, #f2f6f7 35%, #e7f2ff 100%);
    border-radius: 20px;
    padding: 48px 32px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.recruit-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -60px;
    width: 220px;
    height: 220px;
    background: rgba(27, 54, 93, 0.08);
    border-radius: 50%;
}

.recruit-hero h1 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.6rem;
    color: #1b365d;
    margin-bottom: 12px;
}

.recruit-hero p {
    font-family: "Space Grotesk", Arial, sans-serif;
    color: #3b4b63;
    font-size: 1.05rem;
}

.recruit-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.recruit-cta .btn-primary {
    background: #1b365d;
    border-color: #1b365d;
}

.recruit-cta .btn-outline-primary {
    border-color: #1b365d;
    color: #1b365d;
}

.recruit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b365d;
    color: #fff;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.recruit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eef2f7;
    height: 100%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.recruit-card h4 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 8px;
}

.recruit-card p {
    color: #4b5563;
    margin-bottom: 12px;
}

.recruit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #334155;
    font-family: "Space Grotesk", Arial, sans-serif;
}

.recruit-list li {
    margin-bottom: 8px;
}

.recruit-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.recruit-stat {
    background: #1b365d;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    font-family: "Space Grotesk", Arial, sans-serif;
}

.recruit-stat h3 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    font-weight: 700;
}

.recruit-stat p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.recruit-section-title {
    font-family: "DM Serif Display", Georgia, serif;
    color: #1b365d;
    margin-bottom: 16px;
}

.recruit-faq {
    background: #fffaf0;
    border: 1px solid #fde68a;
    border-radius: 14px;
    padding: 20px;
    font-family: "Space Grotesk", Arial, sans-serif;
    color: #4b5563;
}

@media (max-width: 768px) {
    .recruit-hero {
        padding: 36px 24px;
    }

    .recruit-hero h1 {
        font-size: 2.1rem;
    }
}

/* College Coach Registration */
.coach-sales-hero {
    background: radial-gradient(circle at top left, #fbe8c5, #f6f3e8 45%, #e7f2ff 100%);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
    border: 1px solid #e2e8f0;
}

.coach-sales-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #1b365d;
}

.coach-sales-subtitle {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 1rem;
    color: #3b4b63;
    margin-bottom: 18px;
}

.coach-sales-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 16px 14px;
    border: 1px solid #edf2f7;
    height: 100%;
}

.coach-sales-card h5 {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 700;
    color: #1f2a44;
}

.coach-sales-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Space Grotesk", Arial, sans-serif;
    font-weight: 600;
    background: #1b365d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.coach-sales-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-family: "Space Grotesk", Arial, sans-serif;
    color: #334155;
}

.coach-sales-list li {
    margin-bottom: 8px;
}

.coach-sales-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-family: "Space Grotesk", Arial, sans-serif;
}

.coach-sales-cta .btn-primary {
    background: #1b365d;
    border-color: #1b365d;
}

.coach-sales-cta .btn-outline-primary {
    border-color: #1b365d;
    color: #1b365d;
}

.coach-sales-note {
    font-size: 0.9rem;
    color: #4b5563;
}

/* College Coach Profile */
.college-profile-photo-lg {
    max-width: 200px;
    height: 200px;
    object-fit: cover;
}

.college-profile-photo-placeholder {
    width: 200px;
    height: 200px;
}

.college-bio-text {
    white-space: pre-wrap;
}

.college-media-video-fluid {
    max-width: 100%;
}

.college-avatar-sm {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.college-avatar-sm-placeholder {
    width: 80px;
    height: 80px;
}

.college-profile-cover {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}

.college-profile-cover-gradient {
    background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
}

.college-profile-card {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.college-profile-photo-md {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.college-profile-photo-md-placeholder {
    width: 150px;
    height: 150px;
}

.college-media-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.college-media-video {
    height: 200px;
}

.verify-icon-lg {
    font-size: 64px;
}

/* Schools Directory */
.schools-index {
    padding-top: 30px;
}

.schools-browse {
    padding-top: 30px;
}

.schools-details {
    padding-top: 30px;
}

.schools-tracker {
    padding-top: 30px;
}

.schools-map {
    padding-top: 30px;
}

.schools-compare {
    padding-top: 30px;
}

.schools-feedback {
    padding-top: 30px;
}

.schools-index .schools-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.schools-index .schools-hero h1 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
}

.schools-index .schools-hero p {
    font-size: 1.2em;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.schools-index .search-bar-large {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.schools-index .search-bar-large input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
}

.schools-index .search-bar-large button {
    padding: 15px 30px;
    font-size: 1.1em;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.schools-index .search-bar-large button:hover {
    background: #218838;
}

.schools-index .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.schools-index .stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.schools-index .stat-card .number {
    font-size: 3em;
    font-weight: bold;
    color: #1e3c72;
    margin: 0;
}

.schools-index .stat-card .label {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
}

.schools-index .quick-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.schools-index .quick-link-btn {
    padding: 12px 25px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #1e3c72;
    font-weight: 600;
    transition: all 0.3s;
}

.schools-index .quick-link-btn:hover {
    background: #1e3c72;
    color: white;
}

.schools-index .section-header {
    margin: 50px 0 30px 0;
    text-align: center;
}

.schools-index .section-header h2 {
    font-size: 2em;
    color: #333;
    margin: 0 0 10px 0;
}

.schools-index .section-header p {
    color: #666;
    font-size: 1.1em;
}

.schools-index .schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.schools-index .school-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.schools-index .school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.schools-index .school-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    color: #1e3c72;
}

.schools-index .school-card .location {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.schools-index .school-card .details {
    margin: 15px 0;
}

.schools-index .school-card .badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e9ecef;
    border-radius: 3px;
    font-size: 0.85em;
    margin-right: 5px;
    margin-bottom: 5px;
}

.schools-index .school-card .badge.division {
    background: #007bff;
    color: white;
}

.schools-index .school-card .actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.schools-index .btn-view {
    flex: 1;
    padding: 10px;
    background: #1e3c72;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.schools-index .btn-view:hover {
    background: #2a5298;
}

.schools-index .states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.schools-index .state-link {
    padding: 15px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
}

.schools-index .state-link:hover {
    border-color: #1e3c72;
    background: #f8f9fa;
}

.schools-index .state-link .count {
    display: block;
    font-size: 1.5em;
    color: #1e3c72;
    margin-bottom: 5px;
}

.schools-index .state-link.featured {
    border-color: #1e3c72;
    background: #f8f9fa;
}

.schools-index .cta-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.schools-index .cta-section h2 {
    font-size: 2em;
    margin: 0 0 20px 0;
}

.schools-index .cta-section p {
    font-size: 1.1em;
    margin: 0 0 30px 0;
}

.schools-index .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.schools-index .cta-btn {
    padding: 15px 30px;
    background: white;
    color: #28a745;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
}

.schools-index .cta-btn:hover {
    background: #f8f9fa;
}

.schools-index .school-description {
    margin: 15px 0;
    color: #666;
    font-size: 0.9em;
}

.schools-feedback-banner {
    margin: 0 0 20px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #e6f4ea;
    border: 1px solid #b7dfc0;
    color: #1e6b3b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schools-feedback-banner::before {
    content: "✓";
    font-weight: 700;
}

.schools-browse .browse-helper {
    margin: 10px 0 20px;
    display: flex;
    justify-content: flex-start;
}

.schools-browse .browse-helper .btn {
    border: 1px solid #1e3c72;
    color: #1e3c72;
    background: linear-gradient(135deg, #f5f8ff 0%, #eef3ff 100%);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schools-browse .browse-helper .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(30, 60, 114, 0.15);
}

/* Schools Browse */
.schools-browse .browse-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.schools-browse .filters-sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.schools-browse .filters-sidebar h3 {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    color: #333;
}

.schools-browse .filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.schools-browse .filter-group:last-child {
    border-bottom: none;
}

.schools-browse .filter-group h4 {
    margin: 0 0 12px 0;
    font-size: 1em;
    color: #666;
    font-weight: 600;
}

.schools-browse .filter-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.95em;
}

.schools-browse .filter-group input[type="checkbox"] {
    margin-right: 8px;
}

.schools-browse .filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95em;
}

.schools-browse .btn-clear-filters {
    width: 100%;
    padding: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.schools-browse .btn-clear-filters:hover {
    background: #c82333;
}

.schools-browse .results-area {
    min-height: 500px;
}

.schools-browse .results-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.schools-browse .results-count {
    font-size: 1.1em;
    color: #333;
}

.schools-browse .results-count strong {
    color: #1e3c72;
}

.schools-browse .sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.schools-browse .sort-controls label {
    font-weight: 600;
    color: #666;
}

.schools-browse .sort-controls select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95em;
}

.schools-browse .search-bar {
    flex: 1;
    min-width: 300px;
}

.schools-browse .search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.schools-browse .schools-list {
    display: grid;
    gap: 20px;
}

.schools-browse .school-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.schools-browse .school-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.schools-browse .school-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.schools-browse .school-card h3 {
    margin: 0;
    font-size: 1.5em;
    color: #1e3c72;
}

.schools-browse .school-card .location {
    color: #666;
    margin-top: 5px;
    font-size: 0.95em;
}

.schools-browse .save-btn {
    padding: 8px 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
}

.schools-browse .save-btn:hover {
    background: #218838;
}

.schools-browse .save-btn.saved {
    background: #6c757d;
}

.schools-browse .school-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.schools-browse .info-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.schools-browse .info-item .label {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 3px;
}

.schools-browse .info-item .value {
    font-weight: 600;
    color: #333;
}

.schools-browse .school-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.schools-browse .badge {
    padding: 5px 12px;
    background: #e9ecef;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.schools-browse .badge.sport {
    background: #007bff;
    color: white;
}

.schools-browse .badge.varsity {
    background: #28a745;
    color: white;
}

.schools-browse .school-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.schools-browse .btn-view-details {
    flex: 1;
    padding: 12px;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
}

.schools-browse .btn-view-details:hover {
    background: #2a5298;
}

.schools-browse .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.schools-browse .pagination a,
.schools-browse .pagination span {
    padding: 10px 15px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.schools-browse .pagination a:hover {
    background: #1e3c72;
    color: white;
}

.schools-browse .pagination span.current {
    background: #1e3c72;
    color: white;
    font-weight: 600;
}

.schools-browse .no-results {
    background: white;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
}

.schools-browse .no-results h3 {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 20px;
}

.schools-browse .filters-hint {
    color: #666;
    font-size: 0.85em;
}

.schools-browse .browse-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.schools-browse .btn-view-inline {
    display: inline-block;
    margin-top: 20px;
}

.schools-browse .school-description {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
}

.schools-browse .track-form-inline {
    margin: 0;
}

@media (max-width: 768px) {
    .schools-browse .browse-container {
        grid-template-columns: 1fr;
    }

    .schools-browse .filters-sidebar {
        position: static;
    }
}

/* Schools Details */
.schools-details .schools-back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
}

.schools-details .schools-back-link:hover {
    text-decoration: underline;
}

.schools-details .school-header {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.schools-details .school-header-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 20px;
}

.schools-details .school-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    color: #1e3c72;
}

.schools-details .school-meta {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.schools-details .school-meta span {
    margin-right: 20px;
}

.schools-details .school-header-main {
    flex: 1;
}

.schools-details .school-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.schools-details .save-btn-large {
    padding: 15px 30px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
}

.schools-details .save-btn-large:hover {
    background: #218838;
}

.schools-details .save-btn-large.saved {
    background: #6c757d;
}

.schools-details .btn-report {
    padding: 15px 25px;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
}

.schools-details .tabs-nav {
    display: flex;
    gap: 5px;
    background: white;
    padding: 0 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.schools-details .tab-link {
    padding: 15px 25px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.schools-details .tab-link:hover {
    color: #1e3c72;
}

.schools-details .tab-link.active {
    color: #1e3c72;
    border-bottom-color: #1e3c72;
}

.schools-details .tab-content {
    background: white;
    padding: 30px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-height: 400px;
}

.schools-details .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.schools-details .info-grid.spaced {
    margin-top: 20px;
}

.schools-details .info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.schools-details .info-card h4 {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.9em;
    text-transform: uppercase;
}

.schools-details .info-card .value {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.schools-details .section-title {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    color: #1e3c72;
}

.schools-details .program-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #1e3c72;
}

.schools-details .program-card h3 {
    margin: 0 0 15px 0;
    color: #1e3c72;
}

.schools-details .program-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.schools-details .badge {
    padding: 6px 12px;
    background: white;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.schools-details .badge.sport {
    background: #007bff;
    color: white;
}

.schools-details .badge.varsity {
    background: #28a745;
    color: white;
}

.schools-details .program-highlight {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 5px;
}

.schools-details .program-highlight h4 {
    margin: 0 0 10px 0;
}

.schools-details .program-highlight .accent {
    margin: 0;
    font-weight: 600;
    color: #28a745;
}

.schools-details .program-highlight .note {
    margin: 10px 0 0 0;
    color: #666;
}

.schools-details .program-facilities {
    margin-top: 25px;
}

.schools-details .program-facilities h4,
.schools-details .program-achievements h4,
.schools-details .coach-section-title {
    margin-top: 25px;
    color: #1e3c72;
}

.schools-details .program-box {
    background: white;
    padding: 15px;
    border-radius: 5px;
}

.schools-details .program-box p {
    margin: 5px 0;
    color: #666;
}

.schools-details .program-box .program-name {
    margin: 0 0 5px 0;
}

.schools-details .program-box .success {
    color: #28a745;
}

.schools-details .coach-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.schools-details .coach-header {
    display: flex;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.schools-details .coach-info {
    flex: 1;
}

.schools-details .coach-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.schools-details .coach-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    color: #1e3c72;
}

.schools-details .coach-title {
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.schools-details .contact-info {
    display: grid;
    gap: 10px;
}

.schools-details .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.schools-details .btn-contact {
    display: inline-block;
    padding: 10px 20px;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
}

.schools-details .btn-contact:hover {
    background: #2a5298;
}

.schools-details .description-text {
    line-height: 1.8;
    color: #333;
    margin: 15px 0;
}

.schools-details .admissions-info {
    margin-top: 30px;
}

.schools-details .admissions-text {
    color: #666;
    line-height: 1.8;
}

.schools-details .no-data {
    color: #666;
}

.schools-details .schools-link {
    color: #007bff;
}

.schools-details .contact-card-title {
    margin: 0 0 10px 0;
}

.schools-details .contact-card-role {
    margin: 0 0 10px 0;
    color: #666;
}

.schools-details .contact-card-line {
    margin: 5px 0;
}

.schools-details .program-note {
    margin-top: 20px;
}

/* Schools Map */
.schools-map #map {
    height: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.schools-map .map-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.schools-map .map-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.schools-map .map-controls {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.schools-map .control-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.schools-map .control-group label {
    font-weight: 600;
}

.schools-map .control-group select,
.schools-map .control-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.schools-map .control-group button {
    padding: 10px 20px;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.schools-map .control-group button:hover {
    background: #2a5298;
}

.schools-map .map-reset {
    background: #6c757d;
}

.schools-map .map-stats {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
    text-align: center;
}

.schools-map .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.schools-map .stat-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.schools-map .stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 5px;
}

.schools-map .stat-label {
    color: #666;
    font-size: 0.95em;
}

.schools-map .leaflet-popup-content {
    margin: 15px;
    min-width: 250px;
}

.schools-map .popup-school-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 10px 0;
}

.schools-map .popup-detail {
    margin: 8px 0;
    color: #666;
}

.schools-map .popup-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.schools-map .popup-link:hover {
    background: #2a5298;
}

/* Schools Tracker */
.schools-tracker .tracker-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.schools-tracker .tracker-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.schools-tracker .tracker-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1em;
}

.schools-tracker .stats-bar {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.schools-tracker .stat-badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.schools-tracker .stat-badge .number {
    font-size: 1.5em;
    margin-right: 5px;
}

.schools-tracker .filter-tabs {
    display: flex;
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.schools-tracker .filter-tab {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    transition: all 0.3s;
}

.schools-tracker .filter-tab:hover {
    background: #e9ecef;
}

.schools-tracker .filter-tab.active {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
}

.schools-tracker .filter-tab .count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 0.9em;
}

.schools-tracker .schools-grid {
    display: grid;
    gap: 25px;
}

.schools-tracker .tracked-school-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 5px solid #1e3c72;
}

.schools-tracker .tracked-school-card.researching {
    border-left-color: #6c757d;
}

.schools-tracker .tracked-school-card.interested {
    border-left-color: #007bff;
}

.schools-tracker .tracked-school-card.applied {
    border-left-color: #ffc107;
}

.schools-tracker .tracked-school-card.accepted {
    border-left-color: #28a745;
}

.schools-tracker .tracked-school-card.rejected {
    border-left-color: #dc3545;
}

.schools-tracker .tracked-school-card.attending {
    border-left-color: #6f42c1;
}

.schools-tracker .school-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.schools-tracker .school-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5em;
    color: #1e3c72;
}

.schools-tracker .school-info .location {
    color: #666;
    font-size: 0.95em;
}

.schools-tracker .school-info .saved-date {
    color: #999;
    font-size: 0.85em;
    margin-top: 5px;
}

.schools-tracker .status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
}

.schools-tracker .status-badge.researching {
    background: #6c757d;
    color: white;
}

.schools-tracker .status-badge.interested {
    background: #007bff;
    color: white;
}

.schools-tracker .status-badge.applied {
    background: #ffc107;
    color: #333;
}

.schools-tracker .status-badge.accepted {
    background: #28a745;
    color: white;
}

.schools-tracker .status-badge.rejected {
    background: #dc3545;
    color: white;
}

.schools-tracker .status-badge.attending {
    background: #6f42c1;
    color: white;
}

.schools-tracker .status-badge.withdrawn {
    background: #6c757d;
    color: white;
}

.schools-tracker .tracking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.schools-tracker .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.schools-tracker .detail-item .icon {
    font-size: 1.2em;
}

.schools-tracker .school-notes {
    margin: 15px 0;
    padding: 15px;
    background: #fff9e6;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
}

.schools-tracker .school-notes h4 {
    margin: 0 0 10px 0;
    font-size: 0.95em;
    color: #666;
}

.schools-tracker .school-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.schools-tracker .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.schools-tracker .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.schools-tracker .modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.schools-tracker .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.schools-tracker .modal-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.schools-tracker .close-modal {
    font-size: 2em;
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
}

.schools-tracker .form-group {
    margin-bottom: 20px;
}

.schools-tracker .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.schools-tracker .form-group select,
.schools-tracker .form-group input,
.schools-tracker .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.schools-tracker .form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.schools-tracker .no-schools {
    background: white;
    padding: 60px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.schools-tracker .no-schools h3 {
    font-size: 1.8em;
    color: #666;
    margin-bottom: 20px;
}

.schools-tracker .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.schools-tracker .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.schools-tracker .no-schools-text {
    color: #666;
    margin-bottom: 30px;
}

.schools-tracker .btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
}

.schools-tracker .notes-text {
    margin: 0;
    white-space: pre-wrap;
}

.schools-tracker .track-form-inline {
    display: inline;
}

.schools-tracker .read-only {
    background: #f8f9fa;
}

.schools-tracker .label-tight {
    margin: 0;
}

.schools-tracker .modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.schools-tracker .modal-actions .btn-primary {
    flex: 1;
}

/* Schools Compare */
.schools-compare .compare-attribute {
    vertical-align: middle;
}

.schools-compare .compare-logo {
    max-height: 60px;
    max-width: 150px;
}

/* Coach Landing */
.team-coach-hero {
    background: linear-gradient(135deg, #f8f1e1 0%, #f0f7ff 45%, #e9f5ec 100%);
    border-radius: 22px;
    padding: 44px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.team-coach-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: rgba(21, 94, 117, 0.08);
    border-radius: 40% 60% 50% 50%;
}

.team-coach-hero::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: rgba(16, 71, 41, 0.08);
    border-radius: 50%;
}

.team-coach-kicker {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f4c5c;
    font-weight: 700;
    display: inline-block;
    background: #e6f4f1;
    padding: 6px 12px;
    border-radius: 999px;
}

.team-coach-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: #15314b;
    margin: 16px 0 12px;
}

.team-coach-title-sm {
    font-size: 1.9rem;
}

.team-coach-subtitle {
    font-family: "Manrope", Arial, sans-serif;
    color: #425466;
    font-size: 1.05rem;
    max-width: 640px;
}

.team-coach-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    font-family: "Manrope", Arial, sans-serif;
}

.team-coach-cta .btn-primary {
    background: #0f4c5c;
    border-color: #0f4c5c;
}

.team-coach-cta .btn-outline-primary {
    border-color: #0f4c5c;
    color: #0f4c5c;
}

.team-coach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.team-coach-stat {
    background: #0f4c5c;
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    font-family: "Manrope", Arial, sans-serif;
}

.team-coach-stat h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.team-coach-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    height: 100%;
    font-family: "Manrope", Arial, sans-serif;
    animation: rise-in 0.7s ease both;
}

.team-coach-card h4 {
    font-weight: 700;
    color: #123049;
    margin-bottom: 8px;
}

.team-coach-card p {
    color: #4b5563;
    margin-bottom: 12px;
}

.team-coach-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: #334155;
}

.team-coach-list li {
    margin-bottom: 8px;
}

.team-coach-panel {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 20px;
    font-family: "Manrope", Arial, sans-serif;
    color: #4b5563;
}

.team-coach-banner {
    background: #123049;
    color: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    font-family: "Manrope", Arial, sans-serif;
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.team-coach-banner a {
    color: #fff;
    text-decoration: underline;
}

.rise-delay-1 {
    animation-delay: 0.05s;
}

.rise-delay-2 {
    animation-delay: 0.12s;
}

.rise-delay-3 {
    animation-delay: 0.18s;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .team-coach-hero {
        padding: 34px 24px;
    }

    .team-coach-title {
        font-size: 2.1rem;
    }
}

/* Coach Dashboard */
body.coach-dashboard {
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.coach-dashboard .coach-header {
    background: white;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    margin-bottom: 30px;
}

.coach-dashboard .coach-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coach-dashboard .coach-info h1 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 28px;
}

.coach-dashboard .coach-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

.coach-dashboard .coach-actions a {
    color: #3498db;
    text-decoration: none;
    margin-left: 20px;
}

.coach-dashboard .coach-actions a:hover {
    text-decoration: underline;
}

.coach-dashboard .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.coach-dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.coach-dashboard .stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.coach-dashboard .stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.coach-dashboard .stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coach-dashboard .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.coach-dashboard .section-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 22px;
}

.coach-dashboard .athletes-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

.coach-dashboard thead {
    background: #f8f9fa;
}

.coach-dashboard th {
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e1e8ed;
}

.coach-dashboard td {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f5;
    color: #555;
}

.coach-dashboard tr:hover {
    background: #f8f9fa;
}

.coach-dashboard .athlete-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coach-dashboard .athlete-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.coach-dashboard .athlete-avatar-img {
    border-radius: 50%;
    object-fit: cover;
}

.coach-dashboard .athlete-details {
    flex: 1;
}

.coach-dashboard .athlete-details strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 2px;
}

.coach-dashboard .athlete-details small {
    color: #95a5a6;
    font-size: 12px;
}

.coach-dashboard .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coach-dashboard .badge-enhanced {
    background: #d4edda;
    color: #155724;
}

.coach-dashboard .badge-basic {
    background: #fff3cd;
    color: #856404;
}

.coach-dashboard .badge-private {
    background: #f8d7da;
    color: #721c24;
}

.coach-dashboard .badge-public {
    background: #d1ecf1;
    color: #0c5460;
}

.coach-dashboard .progress-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.coach-dashboard .progress-fill {
    height: 100%;
    background: #3498db;
    transition: width 0.3s;
}

.coach-dashboard .btn-view {
    display: inline-block;
    padding: 6px 16px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s;
}

.coach-dashboard .btn-view:hover {
    background: #2980b9;
}

.coach-dashboard .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
}

.coach-dashboard .empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.coach-dashboard .muted-dash {
    color: #95a5a6;
}

/* Coach Athlete Profile */
body.coach-profile {
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.coach-profile .profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.coach-profile .profile-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.coach-profile .profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coach-profile .profile-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.coach-profile .profile-info h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
}

.coach-profile .profile-info p {
    margin: 5px 0;
    opacity: 0.9;
    font-size: 16px;
}

.coach-profile .access-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
}

.coach-profile .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.coach-profile .back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.coach-profile .back-link:hover {
    text-decoration: underline;
}

.coach-profile .section-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 20px;
}

.coach-profile .section-card h2 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.coach-profile .profile-section-title {
    margin: 20px 0 10px 0;
    color: #2c3e50;
    font-size: 16px;
}

.coach-profile .profile-section-text {
    line-height: 1.8;
    color: #555;
}

.coach-profile .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.coach-profile .info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.coach-profile .info-label {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.coach-profile .info-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.coach-profile .accomplishment-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.coach-profile .accomplishment-item h3 {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 18px;
}

.coach-profile .accomplishment-item p {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.coach-profile .competition-table {
    width: 100%;
    border-collapse: collapse;
}

.coach-profile .competition-table th {
    text-align: left;
    padding: 12px;
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid #e1e8ed;
}

.coach-profile .competition-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f3f5;
    color: #555;
}

.coach-profile .media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.coach-profile .media-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.coach-profile .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-profile .restricted-notice {
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    margin-bottom: 20px;
}

.coach-profile .restricted-notice h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.coach-profile .empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

/* Coach Login */
body.coach-login {
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.coach-login .coach-login-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.coach-login .coach-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.coach-login .coach-login-header h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.coach-login .coach-login-header p {
    color: #7f8c8d;
    font-size: 14px;
}

.coach-login .form-group {
    margin-bottom: 20px;
}

.coach-login .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.coach-login .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.coach-login .form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.coach-login .btn-login {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.coach-login .btn-login:hover {
    background: #2980b9;
}

.coach-login .alert {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.coach-login .alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.coach-login .alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.coach-login .demo-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    font-size: 13px;
    color: #555;
}

.coach-login .demo-note strong {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
}

.coach-login .demo-note-text {
    margin: 10px 0 0 0;
    font-size: 13px;
    color: #555;
}

.coach-login .demo-credentials {
    margin-top: 10px;
    font-family: monospace;
    background: white;
    padding: 10px;
    border-radius: 3px;
}

.coach-login .links {
    text-align: center;
    margin-top: 20px;
}

.coach-login .links a {
    color: #3498db;
    text-decoration: none;
}

.coach-login .links a:hover {
    text-decoration: underline;
}

.edit-form-title {
    color: #667eea;
    margin-bottom: 20px;
}

.edit-form-actions {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.edit-form-actions .btn {
    margin: 0 10px;
}
