/* Match Prediction System CSS */
.predict-container {
    background-color: #000000;
    color: #ffffff;
    font-family: monospace;
    line-height: 1.5;
    padding: 20px;
}

.predict-container *{
    
    font-family: monospace;
   
}


.table-header * {
    color: #000000 !important;
    font-weight: 700 !important;
}

span.team-rate {
    display: none;
}

/* Login Notice */
.predict-login-notice {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #aeff00;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.predict-login-notice svg {
    color: #aeff00;
    margin-bottom: 15px;
}

.predict-login-notice p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

/* Header Sections */
.predict-intro {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #aeff00;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.predict-intro-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.predict-intro-header svg {
    color: #aeff00;
}

.predict-intro-header h4 {
    color: #aeff00;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.predict-intro p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

/* Current Points */
.predict-current-points {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #ffbf00;
    border-radius: 8px;
    padding: 4px 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.points-header * {
    font-size: 16px !important;
}

.points-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.points-header svg {
    color: #ffbf00;
}

.points-header span {
    color: #ffffff;
    font-size: 16px;
}

.points-header strong {
    color: #aeff00;
    font-size: 18px;
}

/* Point Settings */
.predict-point-settings {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #aeff00;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.settings-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
    margin-top: 15px;
}

.settings-header svg {
    color: #aeff00;
}

.settings-header h3 {
    color: #aeff00;
    font-size: 18px;
    margin: 0;
}

.settings-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.setting-item:hover {
    transform: translateY(-2px);
}

.setting-item svg {
    color: #ffbf00;
}

.setting-item span {
    color: #ffffff;
    font-size: 14px;
}

/* Main Content Layout */
.predict-main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

/* Matches Section */
.predict-matches {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #aeff00;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.matches-section {
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #aeff00;
}

.section-header svg {
    color: #aeff00;
}

.section-header h3 {
    color: #aeff00;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Match Items - Table Layout */
.match-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(174, 255, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.match-item:hover {
    transform: translateY(-2px);
    border-color: #aeff00;
    box-shadow: 0 8px 32px rgba(174, 255, 0, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(90deg, #aeff00, #ffbf00);
    color: #000000;
    font-weight: 600;
    font-size: 12px;
}

.match-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-time svg {
    color: #000000;
}

.match-content {
    padding: 15px;
}

.team-info {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.team-a {
    text-align: left;
}

.team-b {
    text-align: right;
}

.team-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.team-rate {
    color: #ffbf00;
    font-size: 12px;
}



.match-score {
    text-align: center;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(174, 255, 0, 0.3);
}

.match-score .score {
    color: #aeff00;
    font-size: 18px;
    font-weight: 700;
}

.match-actions {
    text-align: center;
}

/* Match Buttons */
.match-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-btn.predict-btn {
    background: linear-gradient(135deg, #aeff00, #ffbf00);
    color: #000000;
    border: 2px solid #aeff00;
}

.match-btn.predict-btn:hover {
    background: linear-gradient(135deg, #ffbf00, #aeff00);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(174, 255, 0, 0.4);
}

.match-btn.predicted-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: 2px solid #28a745;
}

.match-btn.ended {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: #ffffff;
    border: 2px solid #6c757d;
    cursor: not-allowed;
}

.match-btn.ended.predicted {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-color: #17a2b8;
}

/* User Prediction Info */
.user-prediction-info {
    display: flex;
    align-items: start;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(174, 255, 0, 0.1);
    border-radius: 6px;
    border-left: 4px solid #aeff00;
    margin: 4px;
}

.user-prediction-info svg {
    color: #aeff00;
}

.user-prediction-info small {
    color: #ffffff;
    font-size: 12px;
}

/* Ranking Section */
.predict-ranking {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #aeff00;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.ranking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #aeff00;
}

.ranking-header svg {
    color: #aeff00;
}

.ranking-header h3 {
    color: #aeff00;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}

.ranking-description {
    margin-bottom: 20px;
}

.ranking-description p {
    color: #cccccc;
    font-size: 13px;
    margin: 0;
}

/* Ranking Table */
.ranking-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 60px 1fr 80px 80px;
    gap: 10px;
    background: linear-gradient(135deg, #aeff00, #ffbf00);
    color: #000000;
    padding: 12px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.table-body {
    max-height: 500px;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 80px 80px;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.table-row:hover {
    background: rgba(174, 255, 0, 0.1);
}

.table-row.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.table-row.rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.table-row.rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
}

.col-rank {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #aeff00;
    font-weight: 600;
}

.col-rank svg {
    color: #ffbf00;
}

.col-name {
    color: #ffffff;
    font-weight: 500;
}

.col-points {
    color: #aeff00;
    font-weight: 600;
    text-align: center;
}

.col-correct {
    color: #ffbf00;
    font-weight: 500;
    text-align: center;
}

/* Ranking Empty State */
.ranking-empty {
    text-align: center;
    padding: 40px;
    color: #cccccc;
}

.ranking-empty svg {
    color: #aeff00;
    margin-bottom: 15px;
}

.ranking-empty p {
    font-size: 14px;
    margin: 0;
}

.ranking-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ranking-footer p {
    color: #999999;
    font-size: 12px;
    margin: 0;
    text-align: center;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .predict-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .predict-ranking {
        order: -1;
    }
}

@media (max-width: 768px) {
    .predict-container {
        padding: 0px;
    }
    
    .team-info {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .match-score {
        order: -1;
    }
    
    .settings-content {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 40px 1fr 60px 60px;
        gap: 5px;
        padding: 8px;
        font-size: 11px;
    }
    
    .match-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.match-item:hover {
    animation: pulse 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.match-item {
    animation: slideIn 0.5s ease-out;
}

/* Scrollbar Styling */
.table-body::-webkit-scrollbar {
    width: 6px;
}

.table-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.table-body::-webkit-scrollbar-thumb {
    background: #aeff00;
    border-radius: 3px;
}

.table-body::-webkit-scrollbar-thumb:hover {
    background: #ffbf00;
}


















/* Match Football Modal CSS */

/* Modal Overlay */
.match-football-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.match-football-modal-open .match-football-modal-overlay {
    opacity: 1;
    visibility: visible;
}

.match-football-points-info {
    display: none;
}

/* Modal Container */
.match-football-modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #aeff00;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    width: 90%;
    
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    font-family: monospace;
}

.match-football-modal-overlay.show .match-football-modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.match-football-modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 5px 20px;
    background: linear-gradient(135deg, #aeff00, #ffbf00);
    color: #000000;
    border-bottom: 2px solid #aeff00;
    border-radius: 10px 10px 0px 0px;
}

.match-football-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.match-football-modal-close {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.match-football-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

/* Modal Content */
.match-football-modal-content {
    
    padding: 0;
}

.match-football-modal-content::-webkit-scrollbar {
    width: 6px;
}

.match-football-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.match-football-modal-content::-webkit-scrollbar-thumb {
    background: #aeff00;
    border-radius: 3px;
}

.match-football-modal-content::-webkit-scrollbar-thumb:hover {
    background: #ffbf00;
}

/* Loading State */
.match-football-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #ffffff;
}

.match-football-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(174, 255, 0, 0.3);
    border-top: 4px solid #aeff00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.match-football-modal-loading p {
    color: #cccccc;
    font-size: 16px;
    margin: 0;
}

/* Modal Body */
.match-football-modal-body {
    padding: 25px;
}

/* Match Info Section */
.match-football-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(174, 255, 0, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 25px;
    text-align: center;
}

.match-football-input.score-input {
    box-shadow: unset;
    border: unset;
    border-radius: 6px;
}

.match-football-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.match-football-team {
    flex: 1;
    text-align: center;
}

.match-football-team-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.match-football-team-logo {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(174, 255, 0, 0.3));
}

.match-football-vs {
    color: #aeff00;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px;
    border: 2px solid #aeff00;
    border-radius: 50%;
    background: rgba(174, 255, 0, 0.1);
}

.match-football-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffbf00;
    font-size: 14px;
    font-weight: 600;
}

.match-football-time i {
    color: #aeff00;
}

/* Form Styling */
.match-football-form {
    color: #ffffff;
}

.match-football-form-group {
    margin-bottom: 25px;
}

.match-football-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #aeff00;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-football-label i {
    color: #ffbf00;
}

.match-football-points {
    background: linear-gradient(135deg, #aeff00, #ffbf00);
    color: #000000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: auto;
}

.match-football-optional {
    color: #999999;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
}

/* Score Inputs */
.match-football-score-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
}

.match-football-score-input {
    text-align: center;
}

.match-football-score-input label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.match-football-score-separator {
    color: #aeff00;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

/* Input Styling */
.match-football-input {
    width: 100% !important;
    padding: 12px 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(174, 255, 0, 0.3) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-family: monospace !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

span.match-football-optional,.match-football-hint {
    display: none;
}

.match-football-input:focus {
    outline: none;
    border-color: #aeff00;
    background: rgba(174, 255, 0, 0.1);
    box-shadow: 0 0 0 3px rgba(174, 255, 0, 0.2);
}

.match-football-input:hover {
    border-color: #aeff00;
}

.match-football-input.score-input {
    width: 80px;
    font-size: 18px;
    font-weight: 700;
}

/* Result Options */
.match-football-result-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.match-football-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(174, 255, 0, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.match-football-radio-option:hover {
    background: rgba(174, 255, 0, 0.1);
    border-color: #aeff00;
    transform: translateY(-2px);
}

.match-football-radio-option input[type="radio"] {
    display: none;
}

.match-football-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #aeff00;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.match-football-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #aeff00;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.match-football-radio-option input[type="radio"]:checked + .match-football-radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.match-football-radio-option input[type="radio"]:checked {
    & ~ .match-football-radio-custom {
        border-color: #aeff00;
        box-shadow: 0 0 0 3px rgba(174, 255, 0, 0.2);
    }
}

.match-football-radio-option:has(input[type="radio"]:checked) {
    background: rgba(174, 255, 0, 0.15);
    border-color: #aeff00;
}

.match-football-radio-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

/* Hint Text */
.match-football-hint {
    color: #999999;
    font-size: 12px;
    margin-top: 8px;
    font-style: italic;
}

/* Points Info */
.match-football-points-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(174, 255, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.match-football-points-info h4 {
    color: #aeff00;
    font-size: 16px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-football-points-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.match-football-points-info li {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.match-football-points-info li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffbf00;
    font-size: 12px;
}

.match-football-points-info strong {
    color: #aeff00;
}

.match-football-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 12px;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.match-football-note i {
    color: #aeff00;
}

/* Modal Footer */
.match-football-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(174, 255, 0, 0.3);
}

.match-football-btn-cancel,
.match-football-btn-submit {
    padding: 4px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.match-football-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.match-football-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.match-football-btn-submit {
    background: linear-gradient(135deg, #aeff00, #ffbf00);
    color: #000000;
    border: 2px solid #aeff00;
}

.match-football-btn-submit:hover {
    background: linear-gradient(135deg, #ffbf00, #aeff00);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(174, 255, 0, 0.4);
}

.match-football-btn-submit:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #999999;
    border-color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Existing Prediction Display */
.match-football-existing-prediction {
    padding: 20px;
    color: #ffffff;
}

.match-football-existing-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 8px;
}

.match-football-existing-header i {
    color: #28a745;
    font-size: 24px;
}

.match-football-existing-header h4 {
    color: #28a745;
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.match-football-existing-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(174, 255, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.match-football-existing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.match-football-existing-item:last-child {
    border-bottom: none;
}

.match-football-existing-item label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.match-football-existing-value {
    color: #aeff00;
    font-size: 14px;
    font-weight: 700;
}

.match-football-existing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    font-size: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 4px solid #aeff00;
}

.match-football-existing-note i {
    color: #aeff00;
}

/* Body Lock */
body.match-football-modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .match-football-modal-container {
        width: 99%;
     
    }
    
    .match-football-modal-header {
        padding: 4px 8px;
    }
    
    .match-football-modal-title {
        font-size: 16px;
    }
    
    .match-football-modal-body {
        padding: 4px;
    }
    
    .match-football-teams {
        /*flex-direction: column;*/
        gap: 8px;
    }
    
    .match-football-vs {
        
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .match-football-result-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .match-football-score-inputs {
        gap: 10px;
    }
    
        .match-football-input.score-input {
        width: 60px !important;
        font-size: 14px !important;
        margin-bottom: 0px !important;
    }
    
    .match-football-modal-footer {
        padding: 4px 8px;
        flex-direction: column;
    }
    
    .match-football-btn-cancel,
    .match-football-btn-submit {
        width: 100%;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .match-football-modal-container {
        width: 96%;
        transform: scale(0.96) translateY(20px);

    }
    
    label.match-football-radio-option {
    padding: 4px 8px;
}
    
    button.match-football-btn-cancel {
    display: none;
}
    
    .match-football-modal-content {
        
    }
    
    .match-football-team-name {
        font-size: 16px;
    }
    
    .match-football-label {
        font-size: 12px;
    }
    
    .match-football-input {
        padding: 4px 8px;
        font-size: 14px;
    }
}

/* Animation Enhancements */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
}

.match-football-modal-overlay.show .match-football-modal-container {
    animation: modalSlideIn 0.3s ease-out;
}

.match-football-modal-overlay.hide .match-football-modal-container {
    animation: modalSlideOut 0.3s ease-in;
}

/* Focus States */
.match-football-input:focus,
.match-football-radio-option:focus-within {
    outline: 2px solid #aeff00;
    outline-offset: 2px;
}

/* Button Loading State */
.match-football-btn-submit.loading {
    position: relative;
    color: transparent;
}

.match-football-btn-submit.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    border: 2px solid #000000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}