
/* --- Match Card - 2025 Modern Enhancements --- */
.fixtures-light.np {
    padding: 0 !important;
}

.match-card-wrapper {
    margin: 0 15px 20px;
    position: relative;
}

.match-card {
    display: flex;
    background: #fbfbf9;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 2;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Layout Columns */
.match-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 15%;
}

.match-time {
    font-weight: 800;
    font-size: 16px;
    color: #333;
}

.match-date {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.match-card-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 20px;
}

.player-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 35%;
}

.player-left {
    justify-content: flex-end;
    text-align: right;
}

.player-right {
    justify-content: flex-start;
    text-align: left;
}

.player-name {
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.match-score-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 18px;
    color: #333;
    min-width: 80px;
    text-align: center;
}

.match-card-right {
    width: 15%;
    display: flex;
    justify-content: flex-end;
}

.btn-match-centre {
    background-color: #e81f3e;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-match-centre:hover {
    background-color: #b3162d;
    color: #fff;
    text-decoration: none;
}

/* Status & Live Styles */
.match-card.live-match {
    border-left: 4px solid #e81f3e;
    background: #fff;
}

.live-indicator {
    color: #e81f3e;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulsating-dot {
    width: 8px;
    height: 8px;
    background-color: #e81f3e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.player-container.winner .player-name {
    color: #171e36;
    font-weight: 800;
}

.player-container.winner .player-avatar {
    border: 2px solid #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.4);
}

.match-score-box.live-score {
    background-color: #171e36;
    color: #fff;
    border-color: #171e36;
}

.match-score-box .divider {
    color: #ccc;
    font-weight: 300;
    margin: 0 2px;
}
.match-score-box.live-score .divider {
    color: rgba(255,255,255,0.3);
}

/* Match Details / Timeline */
.match-details-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -15px; /* Connect with card */
    margin-bottom: 0;
    padding: 25px 20px 20px; /* Extra top padding to compensate overlap */
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.frames-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.frame-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 15px;
    border-left: 3px solid #ddd;
}

.frame-item.p1-win { border-left-color: #e81f3e; }
.frame-item.p2-win { border-left-color: #171e36; }

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

.frame-number {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    width: 80px;
}

.frame-scores {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.frame-scores .score { width: 30px; text-align: center; }
.frame-scores .vs { font-size: 12px; color: #999; font-weight: 400; }
.frame-item.p1-win .score.p1 { color: #e81f3e; }
.frame-item.p2-win .score.p2 { color: #171e36; }

.frame-actions a {
    font-size: 12px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
}
.frame-actions a:hover { color: #333; }

/* Break Balls */
.frame-break {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.p1-break { flex-direction: row; }
.p2-break { flex-direction: row-reverse; justify-content: flex-start; }

.break-score {
    font-weight: bold;
    font-size: 14px;
    min-width: 30px;
}
.p1-break .break-score { color: #e81f3e; }
.p2-break .break-score { color: #171e36; text-align: right; }

.break-balls {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.break-ball-mini {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Ball Colors */
.break-ball-mini.red { background-color: #d80027; }
.break-ball-mini.yellow { background-color: #ffcc00; }
.break-ball-mini.green { background-color: #009933; }
.break-ball-mini.brown { background-color: #996633; }
.break-ball-mini.blue { background-color: #0066cc; }
.break-ball-mini.pink { background-color: #ff6699; }
.break-ball-mini.black { background-color: #000000; }

@media (max-width: 768px) {
    .match-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .match-card-left, .match-card-center, .match-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
    .match-card-right { margin-bottom: 0; }
    
    .match-card-left {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        align-items: baseline;
    }
    
    .match-card-center {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .player-container {
        flex-direction: column;
        width: 30%;
        gap: 8px;
    }
    
    .player-left { justify-content: flex-start; text-align: center; }
    .player-right { justify-content: flex-start; text-align: center; }
    .player-left .player-avatar { order: -1; }
    .player-right .player-avatar { order: -1; }
    
    .player-name { font-size: 12px; }
    
    .match-score-box {
        padding: 5px 10px;
        font-size: 16px;
        min-width: 60px;
    }
    
    .btn-match-centre {
        width: 100%;
        text-align: center;
    }
    
    .match-details-container {
        padding: 10px;
    }
    .frame-header {
        font-size: 14px;
    }
    .frame-number {
        width: 60px;
        font-size: 11px;
    }
}

/* --- Event Card (Tournaments & Leagues) - 2025 Refactoring --- */

.event-card {
    background: #fbfbf9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.event-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #e0e0e0;
    overflow: hidden;
}

.event-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-success-custom { background-color: #28a745; }
.badge-warning-custom { background-color: #ffc107; color: #333; }
.badge-primary-custom { background-color: #144b8c; }

.event-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #171e36;
    margin-bottom: 5px;
    line-height: 1.3;
}

.event-card-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
    display: block;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.event-detail-item {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-detail-item i {
    color: #144b8c;
    width: 16px;
    text-align: center;
}

.event-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-event-action {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
    display: inline-block;
}

.btn-event-primary {
    background-color: #e81f3e;
    color: #fff;
}
.btn-event-primary:hover {
    background-color: #c7102b;
    color: #fff;
}

.btn-event-secondary {
    background-color: transparent;
    border-color: #ddd;
    color: #555;
}
.btn-event-secondary:hover {
    background-color: #f8f9fa;
    border-color: #bbb;
    color: #333;
}

@media (max-width: 768px) {
    .event-card {
        margin-bottom: 20px;
    }
    .event-card-title {
        font-size: 16px;
    }
    .event-details-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Inscription Card (My Inscriptions) - 2025 --- */
.inscription-card-wrapper {
    margin-bottom: 30px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    border-bottom: 2px solid #e81f3e;
    padding-bottom: 10px;
    display: inline-block;
}
.inscription-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.inscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.inscription-card-header {
    padding: 20px;
    background: #fbfbf9;
    border-bottom: 1px solid #eee;
    position: relative;
}
.inscription-status {
    position: absolute;
    top: 15px;
    right: 15px;
}
.inscription-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
    padding-right: 80px; /* Space for badge */
}
.inscription-card-date {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}
.inscription-card-body {
    padding: 20px;
    flex-grow: 1;
}
.inscription-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}
.inscription-info-item:last-child {
    border-bottom: none;
}
.inscription-info-label {
    color: #666;
    font-weight: 600;
}
.inscription-info-value {
    color: #333;
    font-weight: 500;
    text-align: right;
}
.inscription-card-actions {
    padding: 15px 20px;
    background: #fbfbf9;
    border-top: 1px solid #eee;
}
.payment-section {
    margin-top: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.payment-section h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #444;
}

/* --- Profile Edit Card - 2025 --- */
.profile-edit-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 40px;
    border: 1px solid #eee;
}
.image-upload-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.image-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.image-container:hover {
    transform: scale(1.05);
}
.overlay-icon {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-container:hover .overlay-icon {
    opacity: 1;
}
.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.form-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}
.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #fbfbf9;
    font-size: 14px;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #e81f3e;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(232, 31, 62, 0.1);
}
textarea.form-control {
    height: auto;
}
.btn-submit {
    background: #e81f3e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}
.btn-submit:hover {
    background: #c71632;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 31, 62, 0.3);
}

/* --- Player Dashboard Styles - 2025 --- */

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 24px;
    color: #144b8c;
    margin-bottom: 10px;
    background: #f0f4f8;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
}
.stat-icon.win-icon { color: #28a745; background: #e8f5e9; }
.stat-icon.loss-icon { color: #dc3545; background: #ffebee; }
.stat-icon.percent-icon { color: #ffc107; background: #fff8e1; }

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

/* Content Cards & Widgets */
.content-card, .widget-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}
.card-title, .widget-card h4, .section-title {
    font-size: 18px;
    font-weight: 700;
    color: #171e36;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.chart-label {
    margin-top: 10px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

/* Evolution Chart */
.evolution-chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.bar-chart-simple {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100px;
    margin-bottom: 10px;
}
.bar-chart-simple .bar {
    width: 15px;
    border-radius: 3px 3px 0 0;
    transition: height 0.5s;
    height: 60%; /* Default height */
}
.bar-chart-simple .bar.win {
    background-color: #28a745;
    height: 80%;
}
.bar-chart-simple .bar.loss {
    background-color: #dc3545;
    height: 40%;
}

/* Head-to-Head (Rivals) */
.rival-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.rival-item:last-child { border-bottom: none; }

.rival-player {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40%;
}
.rival-player.opponent { justify-content: flex-end; text-align: right; }
.avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}
.rival-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.rival-score {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    color: #555;
}
.score-win { color: #28a745; }
.score-loss { color: #dc3545; }

/* Detailed Stats */
.stat-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}
.stat-detail-label { color: #666; }
.stat-detail-value { font-weight: 700; color: #333; }
.stat-progress-bg {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-top: 5px;
    width: 100%;
    overflow: hidden;
}
.stat-progress-bar {
    height: 100%;
    background: #144b8c;
    border-radius: 3px;
}

/* Sidebar Widgets */
.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.btn-action {
    display: block;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-action i { margin-right: 8px; }
.btn-action.btn-primary { background: #e81f3e; color: #fff; border: none; }
.btn-action.btn-secondary { background: #f8f9fa; color: #333; border: 1px solid #ddd; }
.btn-action:hover { opacity: 0.9; transform: translateY(-2px); }

.registration-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}
.registration-item:last-child { border-bottom: none; }
.reg-icon {
    width: 36px;
    height: 36px;
    background: #e81f3e;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.reg-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.reg-details strong { font-size: 14px; color: #333; }
.reg-details span { font-size: 12px; color: #888; }
.reg-status {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.badge-pending { background: #fff3cd; color: #856404; }
.badge-accepted { background: #d4edda; color: #155724; }
.badge-rejected { background: #f8d7da; color: #721c24; }

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.stat-row:last-child { border-bottom: none; }
.comp-name { font-size: 13px; font-weight: 600; color: #555; }

/* --- Player Profile Styles - 2025 --- */
.profile-banner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}
.banner-bg {
    height: 150px;
    background: linear-gradient(135deg, #144b8c 0%, #0a2a50 100%);
}
.profile-content {
    display: flex;
    padding: 0 30px 30px;
    margin-top: -50px;
    align-items: flex-end;
}
.profile-image-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
    margin-right: 25px;
    flex-shrink: 0;
}
.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info {
    flex: 1;
    padding-top: 60px; /* For mobile spacing when stacked */
}
.profile-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #333;
}
.player-id {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}
.player-role {
    color: #e81f3e;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
}
.profile-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.profile-meta li {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.profile-meta li i {
    color: #144b8c;
}
.profile-actions {
    margin-top: 10px;
}

/* Compact Reg List */
.reg-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.reg-item-compact:last-child { border-bottom: none; }
.reg-info {
    display: flex;
    flex-direction: column;
}
.reg-info strong {
    font-size: 13px;
    color: #333;
}
.reg-date {
    font-size: 11px;
    color: #999;
}
.reg-badge .badge {
    font-size: 10px;
    padding: 3px 6px;
}

@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -70px;
    }
    .profile-image-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .profile-info {
        padding-top: 0;
        width: 100%;
    }
    .profile-meta {
        justify-content: center;
    }
}

/* --- Inscription Page Styles - 2025 --- */
.inscription-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.2s;
}
.inscription-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.inscription-card-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: #fcfcfc;
}
.inscription-status {
    position: absolute;
    top: 20px;
    right: 20px;
}
.inscription-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px;
    padding-right: 80px; /* Space for status badge */
}
.inscription-card-date {
    font-size: 13px;
    color: #888;
}
.inscription-card-date i {
    color: #144b8c;
    margin-right: 5px;
}
.inscription-card-body {
    padding: 20px;
}
.inscription-info-item {
    margin-bottom: 15px;
}
.inscription-info-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}
.inscription-info-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}
.payment-section {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px dashed #ffeeba;
}
.payment-section h5 {
    font-size: 14px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 10px;
}
.inscription-card-actions {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}
