.match-card-dark {
    max-width: 450px;
    margin: auto;
    background: #0f172a;
    /* Charcoal Slate */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    border-top: 6px solid #2ecc71;
    /* Emerald Green */
    color: #f1f5f9;
}

/* Header */
.match-card-dark .match-card-header {
    background: #fff;
    /* Slightly lighter slate for contrast */
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.match-card-dark .match-card-header span.date {
    color: #f4b400;
    /* Gold */
    font-weight: bold;
}

/* Teams & Score */
.match-card-dark .match-teams {
    padding: 15px;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.match-card-dark .match-teams-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.match-card-dark .match-team {
    flex: 1;
    text-align: center;
}

.match-card-dark .match-team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.match-card-dark .score {
    font-size: 22px;
    color: #f1f5f9;
    font-weight: bold;
}

.match-card-dark .score span {
    color: #2ecc71;
    /* Green */
    margin: 0 5px;
}

/* Time & Venue */
.match-card-dark .match-info {
    margin-top: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

/* Links */
.match-card-dark .match-links {
    background: #1e293b;
    padding: 10px;
    text-align: center;
}

.match-card-dark .match-links a {
    color: #f1f5f9;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 500;
}

.match-card-dark .match-links a.green {
    color: #2ecc71;
}

.match-card-dark .match-links a.gold {
    color: #f4b400;
}

/* Responsive */
@media (max-width: 500px) {
    .match-card-dark .match-teams-flex {
        flex-direction: column;
        gap: 10px;
    }

    .match-card-dark .match-team img {
        width: 40px;
        height: 40px;
    }
}

.stats-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 500px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 60px 60px;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.stat-row:nth-child(even) {
    background: #f9f9f9;
}

.stat-row.header {
    background: #121A2D;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-row span:nth-child(2),
.stat-row span:nth-child(3) {
    text-align: center;
    font-weight: bold;
}

@media (max-width: 480px) {
    .stat-row {
        grid-template-columns: 1fr 40px 40px;
        font-size: 13px;
    }
}

.ms-card {
    background: #1B2537;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.ms-title {
    text-align: center;
    color: #F4952A;
    margin-bottom: 15px;
}

.ms-player-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.ms-player-select select {
    width: 100%;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Minute row styling */
.ms-minute-row {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
    margin-bottom: 10px;
}

.ms-minute-col {
    /* background: #2ECA6D; */
    border-radius: 6px;
    padding: 4px;
    display: flex;
    justify-content: center;
}

.ms-minute {
    width: 100%;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-align: center;
}

/* Stat rows styling */
.ms-stat-row {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
}

.ms-checkbox-col {
    border-radius: 6px;
    padding: 4px;
    display: flex;
    justify-content: center;
    height: 100%;
}

.ms-stat-row input[type="checkbox"] {
    accent-color: #1B2537;
    cursor: pointer;
    transform: scale(1.3);
}

.ms-stat-name {
    padding: 0 10px;
    text-align: center;
    background: #2D3B54;
    border-radius: 6px;
    margin: 0 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-save-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.ms-save {
    background: #2ECA6D;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.ms-save:hover {
    background: #27b35c;
}

.league-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.league-table h2 {
    background-color: #2D3B54;
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.2rem;
}

.league-table table {
    width: 100%;
    border-collapse: collapse;
}

.league-table th {
    background-color: #F4952A;
    color: white;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
}

.league-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.league-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.league-table tr:hover {
    background-color: #f0f0f0;
}

.league-table .team-cell {
    text-align: left;
    padding-left: 20px;
    font-weight: 500;
}

.league-table .highlight {
    font-weight: bold;
    color: #2D3B54;
}

.league-table .points {
    font-weight: bold;
    color: #F4952A;
}

/* organize */
.organize .allow_payment {
    display: none;
}

.organize .format-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.organize .format-header {
    padding: 24px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.organize .format-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.organize .format-options {
    padding: 20px;
}

.organize .format-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.organize .format-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 2px 8px rgba(244, 149, 42, 0.1);
}

.organize .format-card.selected {
    border: 2px solid var(--secondary);
    background-color: rgba(244, 149, 42, 0.05);
}

.organize .format-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.organize .format-name .icon {
    margin-right: 10px;
    font-size: 20px;
    color: var(--secondary);
}

.organize .format-description {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.organize .format-details {
    padding: 20px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.organize .details-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--primary);
}

.organize .details-content {
    font-size: 14px;
}

.organize .details-list {
    padding-left: 20px;
    margin: 12px 0;
}

.organize .details-list li {
    margin-bottom: 8px;
}

.organize .action-buttons {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid var(--border);
}

.organize .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.organize .btn-primary {
    background: var(--secondary);
    color: white;
    border: none;
}

.organize .btn-primary:hover {
    background: #e08525;
}

.organize .btn-outline {
    background: white;
    color: var(--primary);
    border: 1px solid var(--border);
    margin-right: 12px;
}

.organize .btn-outline:hover {
    background: var(--light);
}


/* REGISTER */
.register .tournament-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.register .dashboard-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register .dashboard-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.register .dashboard-actions {
    display: flex;
    gap: 12px;
}

.register .btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.register .btn-primary {
    background: var(--primary);
    color: white;
}

.register .btn-primary:hover {
    background: var(--dark);
    transform: translateY(-1px);
}

.register .btn-secondary {
    background: var(--light);
    color: var(--primary);
    border: 1px solid var(--border);
}

.register .btn-secondary:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.register .tournament-filters {
    padding: 16px 32px;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 16px;
}

.register .filter-group {
    position: relative;
}

.register .filter-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    padding: 0 6px;
    font-size: 12px;
    color: var(--gray);
}

.register .filter-select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    min-width: 180px;
    background: white;
}

.register .tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    padding: 32px;
}

.register .tournament-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.register .tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.register .card-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    position: relative;
}

.register .card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.register .card-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.register .card-badge {
    /* position: absolute; */
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.register .card-body {
    padding: 20px;
}

.register .card-detail {
    display: flex;
    margin-bottom: 16px;
}

.register .detail-icon {
    width: 24px;
    color: var(--secondary);
    font-size: 18px;
    margin-right: 12px;
}

.register .detail-content {
    flex: 1;
}

.register .detail-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
}

.register .detail-value {
    font-size: 14px;
    font-weight: 500;
}

.register .card-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register .tournament-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}

.register .status-active {
    background: rgba(46, 202, 109, 0.1);
    color: var(--accent);
}

.register .status-upcoming {
    background: rgba(244, 149, 42, 0.1);
    color: var(--secondary);
}

.register .status-completed {
    background: rgba(108, 117, 125, 0.1);
    color: var(--gray);
}

.register .view-btn {
    background: transparent;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.register .view-btn:hover {
    background: var(--light);
}

@media (max-width: 768px) {
    .register .tournament-grid {
        grid-template-columns: '1fr';
    }

    .register .dashboard-actions {
        /* flex-direction: column; */
        width: 90%;
        /* gap: 8px; */
    }

    .register .dashboard-header {
        display: block;
        padding: 20px;
    }

    .register .dashboard-title {
        text-align: center;
        padding-bottom: 10px;
    }

    .register .btn {
        width: 100%;
        padding: 15px;
    }

    .register .tournament-filters {
        flex-direction: column;
    }
}

/* Tournament List */
.list .tournament-box {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.list .tournament-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e9ecef;
}

.list .tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.list .card-header {
    background: linear-gradient(135deg, #2D3B54 0%, #1A2232 100%);
    color: white;
    padding: 20px;
    position: relative;
}

.list .card-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F4952A 0%, #FFC107 100%);
}

.list .tournament-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.3px;
}

.list .prize-amount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.list .card-body {
    padding: 20px;
}

.list .detail-row {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.list .detail-label {
    font-weight: 500;
    color: #6c757d;
    width: 100px;
    font-size: 13px;
}

.list .detail-value {
    font-weight: 400;
    flex: 1;
    font-size: 14px;
}

.list .format-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.list .league {
    background-color: #e3f2fd;
    color: #1976d2;
}

.list .hybrid {
    background-color: #e8f5e9;
    color: #388e3c;
}

.list .knockout {
    background-color: #ffebee;
    color: #d32f2f;
}

.list .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.list .team-count {
    font-weight: 600;
    color: #2D3B54;
    font-size: 14px;
}

.list .action-buttons {
    display: flex;
    gap: 8px;
}

.list .action-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.list .view-btn {
    background-color: #2D3B54;
    color: white;
}

.list .view-btn:hover {
    background-color: #1A2232;
    transform: translateY(-1px);
}

.list .edit-btn {
    background-color: #F4952A;
    color: white;
}

.list .edit-btn:hover {
    background-color: #e08525;
    transform: translateY(-1px);
}

.list .currency-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 5px;
    vertical-align: middle;
}

/* Tournament Teams */
.teams .team-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    margin-top: 10px;
}

.teams .team-header {
    background: #153A5B;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.teams .team-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.teams .team-header .nickname {
    margin: 5px 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

.teams .team-body {
    padding: 20px;
}

.teams .team-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    width: 300px;
}

.teams .team-row:last-child {
    border-bottom: none;
}

.teams .team-body .label {
    color: #555;
    font-weight: 700 !important;
}

.value {
    color: #222;
    font-weight: 400;
}

.teams .pending {
    color: #d9534f;
    font-weight: 600;
}

@media (max-width: 600px) {
    .teams .team-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .teams .label {
        margin-bottom: 4px;
    }
}

/* Tournament View */
.view .container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header Styles */
.view .tournament-header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.view .tournament-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.view .deadline {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Content */
.view .tournament-content {
    padding: 30px;
}

.view .section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.view .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.view .section-title {
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eaf6;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.view .section-title i {
    margin-right: 12px;
    background: #1a237e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Payment Section */
.view .payment-card {
    background: #e8eaf6;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 25px;
}

/* Info Table */
.view .info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.view .info-table th {
    background: #1a237e;
    color: white;
    padding: 15px;
    text-align: left;
}

.view .info-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.view .info-table tr:nth-child(even) {
    background: #f5f7fa;
}

.view .info-table tr:hover {
    background: #e8eaf6;
}

/* Points System */
.view .points-system {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.view .point-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #3949ab;
}

.view .point-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.view .point-label {
    font-size: 1.1rem;
    color: #5c6bc0;
    font-weight: 600;
}

/* Lists */
.view .info-list {
    list-style: none;
    /* margin-left: 20px; */
}

.view .info-list li {
    margin-bottom: 12px;
    /* padding-left: 30px; */
    position: relative;
}

/* .view .info-list li:before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #3949ab;
} */

/* Sponsor Section */
.view .sponsor-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.view .sponsor-card {
    flex: 1;
    min-width: 250px;
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3949ab;
}

.view .sponsor-title {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .view .tournament-title {
        font-size: 2.2rem;
    }

    .view .points-system {
        flex-direction: column;
        gap: 15px;
    }

    .view .point-card {
        width: 100%;
    }

    .view .info-table {
        display: block;
        overflow-x: auto;
    }

    .view .sponsor-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .view .tournament-title {
        font-size: 1.8rem;
    }

    .view .section-title {
        font-size: 1.3rem;
    }

    .view .section-title i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .view .payment-card {
        font-size: 1.1rem;
        padding: 15px;
    }
}

/* Lineup */
.lineup .position-row {
    padding: 5px;
    margin-bottom: 20px;
}

.lineup .slot {
    height: 80px;
    margin-bottom: 10px;
    margin-top: 10px;
    border: 2px dashed #fff;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.lineup .player-card {
    cursor: grab;
}

.lineup .fixture-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lineup .team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.lineup .vs-text {
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.lineup .team-name {
    font-weight: 600;
    font-size: 0.8rem;
}

.lineup .match-info {
    font-size: 14px;
    color: #888;
}

/* Review */
.review .match-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 20px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.review .match-card {
    flex: 1 1 300px;
    min-width: 250px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    padding: 0;
    padding-top: 20px;
}

.review .match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.review .match-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B3A6F;
    /* Dark blue */
    margin-bottom: 10px;
}

.review .match-card h3 i {
    margin-right: 6px;
    color: #F4952A;
}

.review .no-match {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .review .match-section {
        flex-direction: column;
        align-items: center;
    }

    .review .match-card {
        width: 90%;
    }
}

.review .team-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 30px auto;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    margin-top: 10px;
}

.review .team-header {
    background: #153A5B;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.review .team-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.review .team-header .nickname {
    margin: 5px 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
}

.review .team-body {
    padding: 20px;
}

.review .team-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.review .team-row:last-child {
    border-bottom: none;
}

.review .team-body .label {
    color: #555;
    font-weight: 700 !important;
}

.review .review .value {
    color: #222;
    font-weight: 400;
}

.review .pending {
    color: #d9534f;
    font-weight: 600;
}

@media (max-width: 600px) {
    .review .team-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .review .label {
        margin-bottom: 4px;
    }
}

/* Organize Form */
.organize-form .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.organize-form header {
    background: linear-gradient(to right, #2c3e50, #4a6b8a);
    color: white;
    padding: 25px;
    text-align: center;
}

.organize-form .tournament-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.organize-form .tournament-dates {
    font-size: 1.1rem;
    opacity: 0.9;
}

.organize-form .warning-banner {
    background: linear-gradient(to right, #e74c3c, #c0392b);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.organize-form .warning-banner i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.organize-form .form-container {
    padding: 25px;
}

.organize-form .form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.organize-form .section-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a6b8a;
    display: flex;
    align-items: center;
}

.organize-form .section-title i {
    margin-right: 10px;
    color: #4a6b8a;
}

.organize-form .form-group {
    margin-bottom: 20px;
}

.organize-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.organize-form .form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 250px;
    margin-bottom: 15px;
}

.organize-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 0.9rem;
}

.organize-form input,
.organize-form select,
.organize-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.organize-form input:focus,
.organize-form select:focus,
.organize-form textarea:focus {
    outline: none;
    border-color: #4a6b8a;
    box-shadow: 0 0 0 3px rgba(74, 107, 138, 0.2);
}

.organize-form .checkbox-group,
.organize-form .radio-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.organize-form .checkbox-item,
.organize-form .radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.organize-form .checkbox-item input,
.organize-form .radio-item input {
    width: auto;
    margin-right: 10px;
}

.organize-form .required::after {
    content: " *";
    color: #e74c3c;
}

.organize-form .btn-container {
    text-align: center;
    margin-top: 20px;
}

.organize-form .btn-submit {
    background: linear-gradient(to right, #2c3e50, #4a6b8a);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.organize-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #3a516e, #5b7ca5);
}

.organize-form .footer-note {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    color: #7f8c8d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .organize-form .form-col {
        min-width: 100%;
    }

    .organize-form .tournament-name {
        font-size: 1.5rem;
    }

    .organize-form .section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .organize-form header {
        padding: 20px 15px;
    }

    .organize-form .form-container {
        padding: 20px 15px;
    }

    .organize-form .warning-banner {
        padding: 12px 15px;
    }

    .organize-form .warning-banner i {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}

/* Product Owner Contact */
.community-style .container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.community-style header {
    background: linear-gradient(to right, #1b5e20, #43a047);
    color: white;
    padding: 25px;
    text-align: center;
}

.community-style .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.community-style .header-icon {
    font-size: 2.5rem;
}

.community-style h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.community-style .form-container {
    padding: 30px;
}

.community-style .form-section {
    margin-bottom: 30px;
}

.community-style .section-title {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #43a047;
    display: flex;
    align-items: center;
}

.community-style .section-title i {
    margin-right: 10px;
    color: #43a047;
}

.community-style .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.community-style .form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 250px;
    margin-bottom: 20px;
}

.community-style label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1b5e20;
    font-size: 0.9rem;
}

.community-style .input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.community-style .input-group:focus-within {
    border-color: #4a6b8a;
    box-shadow: 0 0 0 3px rgba(74, 107, 138, 0.2);
}

.community-style .input-icon {
    padding: 0 15px;
    color: #7f8c8d;
    background: #e9ecef;
    height: 100%;
    display: flex;
    align-items: center;
}

.community-style input,
.community-style select,
.community-style textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.community-style textarea {
    min-height: 100px;
    resize: vertical;
}

.community-style .checkbox-group {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #e9ecef;
}

.community-style .checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.community-style .checkbox-item input {
    width: auto;
    margin-right: 10px;
}

.community-style .btn-container {
    text-align: center;
    margin-top: 20px;
}

.community-style .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.community-style .btn-save {
    background: linear-gradient(to right, #1b5e20, #43a047);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.community-style .btn-save:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #3a516e, #5b7ca5);
}

.community-style .image-upload {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.community-style .image-upload:hover {
    border-color: #4a6b8a;
    background: #f8f9fa;
}

.community-style .upload-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.community-style .contact-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.community-style .contact-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.community-style .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.community-style .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-style .contact-item i {
    color: #4a6b8a;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .community-style .form-col {
        min-width: 100%;
    }

    .community-style .header-content {
        flex-direction: column;
        text-align: center;
    }

    .community-style .contact-info {
        flex-direction: column;
    }
}

/* Players */
.players .players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.players .player-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.players .player-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.players .player-header {
    background: linear-gradient(to right, #2e7d32, #43a047);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.players .player-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.players .player-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.3;
}

.players .player-image {
    height: 180px;
    background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.players .image-placeholder {
    font-size: 5rem;
    color: #bdc3c7;
}

.players .player-details {
    padding: 20px;
}

.players .detail-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.players .detail-icon {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #4a6b8a;
}

.players .detail-label {
    font-weight: 600;
    color: #7f8c8d;
    min-width: 120px;
}

.players .detail-value {
    font-weight: 500;
    color: #2c3e50;
}

.players .quality-tag {
    display: inline-block;
    background: #e8f4fd;
    color: #0c5460;
    border-radius: 20px;
    font-weight: 600;
}

.players .player-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.players .action-btn {
    padding: 8px 15px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.players .action-btn:hover {
    background: #3a516e;
}

.players .club-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .players .players-grid {
        grid-template-columns: 1fr;
    }

    .players h1 {
        font-size: 2rem;
    }
}

.players .header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 20px;
}

.players h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2e7d32;
    /* color: #2c3e50; */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.players h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1b5e20, #43a047);
    /* background: linear-gradient(to right, #2c3e50, #4a6b8a); */
    border-radius: 2px;
}

/* Tournament Players */
.tournament-players .container,
.container-default {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tournament-players header,
.container-default header {
    background: linear-gradient(to right, #2c3e50, #4a6b8a);
    color: white;
    padding: 25px;
    text-align: center;
}

.tournament-players .tournament-name,
.container-default .tournament-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tournament-players .tournament-dates,
.container-default .tournament-dates {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.tournament-players .content {
    padding: 30px;
}

.tournament-players .player-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.tournament-players .player-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a6b8a, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.tournament-players .player-info {
    flex: 1;
}

.tournament-players .player-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tournament-players .player-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tournament-players .detail-item {
    display: flex;
    align-items: center;
}

.tournament-players .detail-icon {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #4a6b8a;
}

.tournament-players .detail-label {
    font-weight: 600;
    color: #7f8c8d;
    margin-right: 8px;
}

.tournament-players .detail-value {
    font-weight: 500;
    color: #2c3e50;
}

.tournament-players .stats-section {
    margin-top: 30px;
    width: 60%;
    margin: auto;
}

.tournament-players .section-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a6b8a;
    display: flex;
    align-items: center;
}

.tournament-players .section-title i {
    margin-right: 10px;
    color: #4a6b8a;
}

.tournament-players .stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.tournament-players .stats-table th {
    background: #4a6b8a;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.tournament-players .stats-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
}

.tournament-players .stats-table tr:nth-child(even) {
    background: #f8f9fa;
}

.tournament-players .stats-table tr:hover {
    background: #e9ecef;
}

.tournament-players .stat-input {
    width: 80px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.tournament-players .stat-input:focus {
    outline: none;
    border-color: #4a6b8a;
    box-shadow: 0 0 0 2px rgba(74, 107, 138, 0.2);
}

.tournament-players .btn-container {
    text-align: center;
    margin-top: 30px;
}

.tournament-players .btn-save {
    background: linear-gradient(to right, #2c3e50, #4a6b8a);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tournament-players .btn-save:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #3a516e, #5b7ca5);
}

.tournament-players .alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.tournament-players .alert.show {
    opacity: 1;
    transform: translateY(0);
}

.tournament-players .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.tournament-players .alert-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .tournament-players .player-header {
        flex-direction: column;
        text-align: center;
    }

    .tournament-players .player-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tournament-players .player-details {
        grid-template-columns: 1fr;
    }

    .tournament-players .stats-table {
        display: block;
        overflow-x: auto;
    }
}

.football_academy .training .container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(46, 125, 50, 0.15);
    overflow: hidden;
}

.football_academy .training header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.football_academy .training h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.football_academy .training .view-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.football_academy .training .view-option-btn {
    background: #e8f5e9;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.football_academy .training .view-option-btn.active {
    background: var(--primary);
    color: white;
}

.football_academy .training .view-option-btn:hover {
    background: var(--primary);
    color: white;
}

.football_academy .training .schedule-view {
    padding: 20px;
}

.football_academy .training .calendar-view {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.football_academy .training .calendar-day {
    background: var(--light);
    border-radius: 8px;
    padding: 15px;
    min-height: 150px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
}

.football_academy .training .day-header {
    font-weight: 600;
    color: var(--primary);
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.football_academy .training .calendar-session {
    background: white;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary);
}

.football_academy .training .session-time {
    font-weight: 600;
    color: var(--dark);
}

.football_academy .training .session-title {
    color: var(--gray);
    font-size: 0.85rem;
}

.football_academy .training .schedule-card {
    background: var(--light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(46, 125, 50, 0.1);
    border-left: 4px solid var(--primary);
}

.football_academy .training .schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.football_academy .training .schedule-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.football_academy .training .schedule-time {
    font-weight: 600;
    color: var(--primary);
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
}

.football_academy .training .schedule-days {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.football_academy .training .day-pill {
    background: #e8f5e9;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.football_academy .training .current-day {
    background: var(--primary);
    color: white;
}

.football_academy .training .empty-state {
    text-align: center;
    padding: 40px 0;
    color: var(--gray);
}

.football_academy .training .empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #c8e6c9;
}

@media (max-width: 768px) {
    .football_academy .training .calendar-view {
        grid-template-columns: 1fr;
    }

    .football_academy .training .calendar-day {
        min-height: auto;
    }

    .football_academy .training h1 {
        font-size: 1.7rem;
    }

    .football_academy .training .schedule-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.football_academy .training .list-view {
    display: none;
}

.gallery {
    --s: 150px;
    /* control the size */
    --g: 10px;
    /* control the gap */
    --f: 5;
    /* control the scale factor */

    display: grid;
    gap: var(--g);
    width: calc(5*var(--s) + 2*var(--g));
    aspect-ratio: 1;
    grid-template-columns: repeat(4, auto);
}

.gallery>img {
    width: 0;
    height: 0;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    cursor: pointer;
    filter: grayscale(80%);
    transition: .35s linear;
}

.gallery img:hover {
    filter: grayscale(0);
    width: calc(var(--s)*var(--f));
    height: calc(var(--s)*var(--f));
}

.gallery-box {
    margin-top: 10px;
    min-height: 100vh;
    display: grid;
    place-content: center;
    background: #fff;
}

/* About academy */
.about-academy .container-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about-academy header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.about-academy h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-academy .dashboard {
    display: flex;
    flex-wrap: wrap;
}

.about-academy .sidebar-content {
    flex: 0 0 250px;
    background: var(--light);
    padding: 20px;
    border-right: 1px solid var(--border);
}

.about-academy .nav-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.about-academy .nav-item.active,
.about-academy .nav-item:hover {
    background: var(--primary);
    color: white;
}

.about-academy .content {
    flex: 1;
    padding: 25px;
    min-height: 600px;
}

.about-academy .section {
    display: none;
}

.about-academy .section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-academy .section-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.about-academy .form-group {
    margin-bottom: 25px;
}

.about-academy .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.about-academy input,
.about-academy textarea,
.about-academy select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: var(--dark);
}

.about-academy textarea {
    min-height: 120px;
    resize: vertical;
}

.about-academy .save-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

.about-academy .save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.about-academy .divider {
    height: 1px;
    background: var(--border);
    margin: 30px 0;
}

.about-academy .info-row {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.about-academy .info-label {
    flex: 0 0 150px;
    font-weight: 500;
    color: var(--gray);
}

.about-academy .info-value {
    flex: 1;
}

.about-academy .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.about-academy .gallery-item {
    background: var(--light);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.about-academy .gallery-item img {
    max-width: 100%;
    border-radius: 6px;
}

.about-academy .gallery-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
}

.about-academy .file-upload {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    border: 2px dashed var(--border);
    text-align: center;
    margin-bottom: 20px;
}

.about-academy .date-inputs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-academy .date-input {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .about-academy .dashboard {
        flex-direction: column;
    }

    .about-academy .sidebar-content {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .about-academy .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-academy .info-label {
        margin-bottom: 5px;
    }

    .about-academy .date-inputs {
        flex-direction: column;
    }

    .about-academy h1 {
        font-size: 1.7rem;
    }
}

/* JOB APPLY */
.job-apply .container-content {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: auto;
}

.job-apply header {
    background: linear-gradient(90deg, #1b5e20 0%, #43a047 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.job-apply .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job-apply h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.job-apply .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.job-apply .content {
    padding: 30px;
}

.job-apply .section {
    margin-bottom: 30px;
}

.job-apply .section-title {
    color: #1b5e20;
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-apply .job-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.job-apply .info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #43a047;
}

.job-apply .info-card h3 {
    color: #2e7d32;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-apply .info-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

.job-apply .deadline {
    color: #e74c3c;
    font-weight: 600;
}

.job-apply .profile-link {
    display: inline-block;
    margin-top: 10px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-apply .profile-link:hover {
    text-decoration: underline;
}

.job-apply .resume-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.job-apply .resume-question {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.job-apply .resume-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    min-height: 150px;
    border: 1px dashed #ccc;
    color: #888;
    font-style: italic;
}

.job-apply .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.job-apply .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.job-apply .btn-view {
    background: #2e7d32;
    color: white;
    border: none;
}

.job-apply .btn-view:hover {
    background: #43a047;
}

.job-apply .btn-save {
    background: transparent;
    color: #f1f8e9;
    border: 2px solid #c5e1a5;
}

.job-apply .btn-save:hover {
    background: #f8f9fa;
}

.job-apply .btn-return {
    background: transparent;
    color: #1b5e20;
    border: 2px solid #1b5e20;
}

.job-apply .btn-return:hover {
    background: #1b5e20;
    color: white;
}

@media (max-width: 768px) {
    .job-apply header {
        padding: 20px;
    }

    .job-apply h1 {
        font-size: 1.8rem;
    }

    .job-apply .content {
        padding: 20px;
    }

    .job-apply .job-info-grid,
    .job-apply .contact-grid {
        grid-template-columns: 1fr;
    }

    .job-apply .action-buttons {
        flex-direction: column;
    }

    .job-apply .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .job-apply .section-title {
        font-size: 1.3rem;
    }

    .job-apply .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .job-apply .contact-icon {
        align-self: center;
    }
}

/* MESSAGES */
.messages .container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.messages header {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messages h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.messages .search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 15px;
    width: 250px;
}

.messages .search-bar input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    margin-left: 10px;
}

.messages .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.messages .search-bar input:focus {
    outline: none;
}

.messages .messages-container {
    display: flex;
    height: calc(100vh - 200px);
    min-height: 500px;
}

.messages .message-list {
    width: 35%;
    border-right: 1px solid #eaeaea;
    overflow-y: auto;
}

.messages .message-detail {
    width: 65%;
    padding: 20px;
    overflow-y: auto;
    background: #fafafa;
}

.messages .message-item {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    transition: background 0.3s;
}

.messages .message-item:hover {
    background: #f5f7fa;
}

.messages .message-item.active {
    background: #eef2f8;
    border-left: 4px solid #4b6cb7;
}

.messages .message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.messages .message-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #182848;
}

.messages .message-date {
    font-size: 0.85rem;
    color: #777;
    background: #f1f1f1;
    padding: 3px 8px;
    border-radius: 12px;
}

.messages .message-preview {
    color: #666;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.messages .message-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #888;
}

.messages .message-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.messages .detail-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.messages .detail-title {
    font-size: 1.4rem;
    color: #182848;
    margin-bottom: 10px;
}

.messages .detail-date {
    color: #4b6cb7;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.messages .contact-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.messages .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.messages .message-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    line-height: 1.6;
}

.messages .message-time {
    text-align: right;
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.messages .action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.messages .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.messages .btn-reply {
    background: #4b6cb7;
    color: white;
    border: none;
}

.messages .btn-reply:hover {
    background: #3a559d;
}

.messages .btn-delete {
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.messages .btn-delete:hover {
    background: #e74c3c;
    color: white;
}

.messages .empty-state {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #888;
    text-align: center;
}

.messages .empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #c3cfe2;
}

@media (max-width: 768px) {
    .messages .messages-container {
        flex-direction: column;
        height: auto;
    }

    .messages .message-list,
    .messages .message-detail {
        width: 100%;
    }

    .messages .message-list {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        max-height: 400px;
    }

    .messages header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .messages .search-bar {
        width: 100%;
    }
}

/* NOTIF */
.notif .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header Styles */
.notif .notifications-header {
    background: linear-gradient(135deg, #4a6fa5 0%, #2c3e50 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notif .header-content {
    display: flex;
    align-items: center;
}

.notif .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.notif .header-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.notif .header-text p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.notif .actions button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

.notif .actions button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Filter Bar */
.notif .filter-bar {
    background: #f8f9fa;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

.notif .filter-options {
    display: flex;
    gap: 10px;
}

.notif .filter-options a {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.notif .filter-options a.active {
    background: #4a6fa5;
    color: white;
    border-color: #4a6fa5;
}

.notif .filter-options a:hover:not(.active) {
    background: #f1f1f1;
}

.notif .search-box {
    position: relative;
}

.notif .search-box input {
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    width: 180px;
}

.notif .search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Notifications List */
.notif .notifications-list {
    padding: 0;
}

.notif .notification-item {
    display: flex;
    padding: 20px 25px;
    border-bottom: 1px solid #eaeaea;
    transition: background 0.3s ease;
}

.notif .notification-item:hover {
    background: #f9fafb;
}

.notif .notification-item.unread {
    background: #f0f7ff;
}

.notif .notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.notif .notification-info {
    flex: 1;
}

.notif .notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.notif .notification-badge {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4a6fa5;
    border-radius: 50%;
    margin-left: 10px;
}

.notif .unread .notification-badge {
    background: #e74c3c;
}

.notif .notification-message {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.notif .notification-time {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
}

.notif .notification-time i {
    margin-right: 5px;
}

.notif .notification-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.notif .notification-actions button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.notif .notification-actions button:hover {
    color: #4a6fa5;
}

/* Notification Types */
.notif .notif-heart .notification-icon {
    background: #e3f2fd;
    color: red;
}

.notif .notif-soccer-ball .notification-icon {
    background: #e3f2fd;
    color: green;
}

.notif .notif-user .notification-icon {
    background: #e3f2fd;
    color: #3B5679;
}

.notif .notif-comment .notification-icon {
    background: #e3f2fd;
    color: #375070;
}

.notif .alert .notification-icon {
    background: #ffebee;
    color: #d32f2f;
}

.notif .success .notification-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.notif .event .notification-icon {
    background: #f3e5f5;
    color: #7b1fa2;
}

.notif .update .notification-icon {
    background: #fff8e1;
    color: #f57c00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notif .notification-title {
        text-align: left;
    }

    .notif .notifications-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .notif .header-content {
        margin-bottom: 15px;
        justify-content: center;
    }

    .notif .filter-bar {
        flex-direction: column;
        gap: 15px;
    }

    .notif .notification-item {
        flex-direction: column;
        text-align: center;
    }

    .notif .notification-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .notif .notification-actions {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .notif .filter-options {
        flex-wrap: wrap;
        justify-content: center;
    }

    .notif .header-text h1 {
        font-size: 1.5rem;
    }
}

.notif .notif_tab_active {
    background-color: #446594 !important;
    color: #fff;
}

/* Job Details */
.job-det .container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.job-det header {
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 100%);
    color: white;
    padding: 10px;
    padding-bottom: 5px;
    position: relative;
}

.job-det .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    /* stays red to highlight urgency */
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.job-det h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.job-det .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 1rem;
    opacity: 0.95;
}

.job-det .job-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-det .job-meta i {
    font-size: 1rem;
    color: #a5d6a7;
    /* light green icons */
}

.job-det .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.job-det .job-details {
    padding: 30px;
}

.job-det .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.job-det .detail-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #2e7d32;
}

.job-det .detail-card h3 {
    color: #1b5e20;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.job-det .detail-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
}

.job-det .detail-card p.salary {
    color: #27ae60;
    font-weight: 700;
    font-size: 0.9rem;
}

.job-det .section {
    margin-bottom: 30px;
}

.job-det .section h2 {
    color: #1b5e20;
    margin-bottom: 15px;
    font-size: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.job-det .section-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
}

.job-det .applicants {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8f5e9;
    /* light green tint */
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
    color: #2e7d32;
}

.job-det .address {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.job-det .address i {
    color: #2e7d32;
    font-size: 1.5rem;
}

.job-det .address-text {
    line-height: 1.5;
}

.job-det .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.job-det .btn {
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
}

.job-det .btn-apply {
    background: #27ae60;
    color: white;
    border: none;
}

.job-det .btn-apply:hover {
    background: #219653;
}

.job-det .btn-save {
    background: transparent;
    color: #1b5e20;
    border: 2px solid #1b5e20;
}

.job-det .btn-save:hover {
    background: #1b5e20;
    color: white;
}

.job-det .btn-share {
    background: transparent;
    color: #7f8c8d;
    border: 2px solid #bdc3c7;
}

.job-det .btn-share:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .job-det .details-grid {
        grid-template-columns: 1fr;
    }

    .job-det .action-buttons {
        flex-direction: column;
    }

    .job-det header {
        padding: 10px;
        text-align: center;
    }

    .job-det .status-badge {
        position: static;
        margin: 15px auto 0 auto;
        display: inline-block;
    }

    .job-det h1 {
        font-size: 1.8rem;
    }

    .job-det .job-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Training Hours */
.training-hours .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(46, 125, 50, 0.15);
    overflow: hidden;
}

@media (min-width: 992px) {
    .training-hours .container {
        flex-direction: row;
    }
}

.training-hours header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.training-hours h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.training-hours .instructions {
    background: #e9f0ff;
    padding: 15px 20px;
    font-size: 0.95rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.training-hours .main-content {
    padding: 20px;
    flex: 1;
}

.training-hours .saved-schedules {
    background: var(--light);
    padding: 20px;
    border-left: 1px solid var(--border);
}

@media (min-width: 992px) {
    .training-hours .saved-schedules {
        width: 320px;
    }
}

.training-hours .section-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.training-hours .time-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.training-hours .time-group {
    flex: 1;
    min-width: 120px;
}

.training-hours .time-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.training-hours select,
.training-hours input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: var(--dark);
}

.training-hours select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.training-hours .days-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.training-hours .day-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s;
}

.training-hours .day-checkbox:hover {
    background: #e6f7ff;
    transform: translateY(-2px);
}

.training-hours .day-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.training-hours .day-checkbox label {
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
}

.training-hours .save-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.training-hours .save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.training-hours .save-btn:active {
    transform: translateY(0);
}

.training-hours .divider {
    height: 1px;
    background: var(--border);
    margin: 30px 0;
}

.training-hours .schedules-list {
    margin-top: 20px;
}

.training-hours .schedule-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.training-hours .schedule-time {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.training-hours .schedule-days {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.training-hours .day-pill {
    background: #e9f0ff;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.training-hours .empty-state {
    text-align: center;
    padding: 30px 0;
    color: var(--gray);
}

.training-hours .empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ced4da;
}

.training-hours .schedule-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.training-hours .title-input-group {
    margin-bottom: 25px;
}

.training-hours .title-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .training-hours .time-row {
        flex-direction: column;
        gap: 15px;
    }

    .training-hours .time-group {
        min-width: 100%;
    }

    .training-hours .days-container {
        grid-template-columns: 1fr;
    }

    .training-hours h1 {
        font-size: 1.7rem;
    }

    .training-hours .saved-schedules {
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

.coach .container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.coach header {
    background: linear-gradient(90deg, #2e7d32 0%, #1b5e20 100%);
    color: white !important;
    padding: 10px;
    text-align: center;
}

.coach .profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coach .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #2e7d32;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.coach h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.coach .tagline {
    font-style: italic;
    opacity: 0.9;
}

.coach .coaching-level {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.coach .content {
    padding: 30px;
}

.coach .section {
    margin-bottom: 30px;
}

.coach .section-title {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.coach .section-content {
    line-height: 1.6;
    color: #444;
}

.coach .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e7d32, transparent);
    margin: 25px 0;
}

.coach .qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.coach .quality-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-top: 4px solid #1b5e20;
}

.coach .quality-title {
    color: #2e7d32;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.coach .team-item {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #1b5e20;
}

.coach .team-name {
    font-weight: 600;
    color: #2e7d32;
}

.coach .coach-team-details {
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

.coach .two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.coach .social-media,
.coach .coaching-certs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.coach .social-item,
.coach .cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

.coach .social-item:last-child,
.coach .cert-item:last-child {
    border-bottom: none;
}

.coach .social-item i {
    color: #2e7d32;
    font-size: 1.2rem;
    width: 30px;
}

.coach .preferred-formation {
    background: #2e7d32;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.coach .achievements-list {
    list-style-type: none;
}

.coach .achievements-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coach .achievements-list li:before {
    content: "•";
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.5rem;
}

/* addition 2 */
.coach .content {
    padding: 30px;
}

.coach .section {
    margin-bottom: 40px;
}

.coach .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.coach .card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #2e7d32;
}

.coach .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.coach .card-title {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coach .card-content {
    color: #444;
    line-height: 1.6;
}

.coach .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.coach .achievement-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.coach .achievement-icon {
    width: 50px;
    height: 50px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.coach .achievement-icon i {
    font-size: 20px;
    color: white;
}

.coach .achievement-details h3 {
    color: #2e7d32;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.coach .achievement-details p {
    color: #666;
    font-size: 0.95rem;
}

.coach .award-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.coach .award-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E7D32 0%, #149f1bff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.coach .award-icon i {
    font-size: 18px;
    color: white;
}

.coach .award-details h3 {
    color: #2e7d32;
    margin-bottom: 5px;
}

.coach .award-details p {
    color: #666;
    font-size: 0.9rem;
}

/*  */

@media (max-width: 768px) {
    .coach .cards-container {
        grid-template-columns: 1fr;
    }

    .coach .content {
        padding: 20px;
    }

    .coach .section-title {
        font-size: 1.5rem;
    }

    .coach .coach header {
        padding: 20px;
    }

    .coach h1 {
        font-size: 1.7rem;
    }

    .coach .content {
        padding: 20px;
    }

    .coach .qualities-grid {
        grid-template-columns: 1fr;
    }

    .coach .two-column {
        grid-template-columns: 1fr;
    }

    .coach .avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coach .section-title {
        font-size: 1.3rem;
    }

    .coach .quality-title {
        font-size: 1.1rem;
    }

    .coach .preferred-formation {
        font-size: 0.9rem;
    }

    .coach .achievement-item,
    .coach .award-item,
    .coach .quality-item {
        flex-direction: column;
        text-align: center;
    }

    .coach .achievement-icon,
    .coach .award-icon,
    .coach .quality-icon {
        align-self: center;
    }
}

.profile .container {
    max-width: 1000px;
    margin: 0 auto;
}

.profile header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-light);
}

.profile h1 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.profile .club-badge {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile .card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.profile .card:hover {
    transform: translateY(-5px);
}

.profile .card-title {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.profile .card-title i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.profile .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.profile .form-group {
    flex: 1;
    min-width: 250px;
}

.profile label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.profile input,
.profile select,
.profile textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.profile input:focus,
.profile select:focus,
.profile textarea:focus {
    border-color: var(--primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.profile .save-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
    display: block;
    margin: 20px 0 0 auto;
}

.profile .save-btn:hover {
    background: var(--primary-dark);
}

.profile .social-media {
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.profile .username-input {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile .at-symbol {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
    font-weight: bold;
    min-width: 45px;
    text-align: center;
}

.profile .username-input input {
    border-radius: 0 8px 8px 0;
    flex: 1;
}

.profile .file-upload {
    border: 2px dashed var(--primary-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    background-color: var(--light-bg);
    transition: all 0.3s;
}

.profile .file-upload:hover {
    border-color: var(--primary);
    background-color: #e8f5e9;
}

.profile .file-upload-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.profile .file-upload-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
    font-weight: 600;
}

.profile .file-upload-btn:hover {
    background: var(--primary-dark);
}

.profile #file-name {
    display: block;
    margin-top: 10px;
    color: #666;
    font-style: italic;
}

/* Social stats styling */
.profile .social-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.profile .stat-card {
    flex: 1;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.profile .stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.profile .stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .profile .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .profile .form-group {
        min-width: 100%;
    }

    .profile .card {
        padding: 20px;
    }

    .profile h1 {
        font-size: 1.8rem;
    }

    .profile .card-title {
        font-size: 1.3rem;
    }

    .profile .save-btn {
        width: 100%;
        margin-top: 15px;
    }

    .profile .social-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .profile body {
        padding: 15px;
    }

    .profile .card {
        padding: 15px;
    }

    .profile .file-upload {
        padding: 20px;
    }
}

.profile .footer-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.9rem;
}


.f-s-20 {
    font-size: 20px;
}

.f-s-12 {
    font-size: 10px;
}

@media (max-width: 480px) {
    h3 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.8rem;
    }
}

.text-bold {
    font-weight: 600;
}

.slot {
    color: #fff;
}

pre {
    font-family: inherit;
    font-size: inherit;
}

.match-info-scorer {
    font-size: 0.7rem;

}

.match-info-scorer a:hover {
    color: green !important;
}