ul.gp-nav {
    display: flex;
    flex-direction: row;
}

ul.gp-nav li {
    position: relative;
    padding-right: 60px;
    z-index: 999;
}

ul.gp-nav li::before {
    content: '';
    background: #fff;
    height: 1px;
    width: 60px;
    position: absolute;
    right: 0px;
    top: 25px;
    z-index: 99;
}

ul.gp-nav li:last-child {
    padding-right: 0px;
}

ul.gp-nav li:last-child::before {
    display: none;
}

ul.gp-nav li a {
    display: flex;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #2DCD7D;
    color: #000;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}

ul.gp-nav li.active::before {
    background: #2DCD7D;
}

ul.gp-nav li:hover a, ul.gp-nav li.active a {
    background: #2DCD7D;
    border: 2px solid #2DCD7D;
    color: #FFFFFF;
}

.flag{
    padding: 10px 10px;
}

.heading {
    font-size: 32px;
}
.custom-input input{
    width: 100px;
    background: #2bc155;
    border: 1px solid #FFFFFF;
    color: #fff;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
}

button:disabled {
    cursor: auto;
}

.light.btn-success:disabled:hover{
    background-color: #e7faec;
    border-color: #e7faec;
    color: #2bc155;
}


.swal2-popup {
font-size: 12px !important;
width: 34em !important;
min-height: 200px !important;
border-radius: 15px !important;
}

.swal2-container .swal2-title {
font-size: 18px !important;
color: #323131 !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
font-size: 14px !important;
}

.swal2-styled:focus {
outline: 0;
box-shadow: none !important;
}

.swal2-title {
color: #0d0d0d !important;
}

.swal2-content {
font-size: 16px !important;
}

.auth-overlay {
    background: rgba(10, 0, 34, 0.49);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(10, 0, 34, 0.31);

    width: 400px;
    padding: 50px;
    line-height: 200px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -200px;
    z-index: 9999;
}

.auth-form{
    width: 100%;
    max-width: 460px;
}
.pagination .page-item .page-link {
    color: #28fb6b;
    border: 1px solid #2e2643;
}


.custom-file {
    display: table;
    position: relative;
    max-width: 80px;
}

.custom-file .file-label{
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
  }

.custom-file .preview {
    background-color: #ffffff !important;
    background-clip: padding-box;
    border: 1px solid rgba(101, 109, 119, 0.24);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    padding: 3px;
  }

.custom-file img{
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 107px;
}


@media (max-width: 576px) {
		ul.gp-nav li { 
    padding-right: 5px;

    
}


ul.gp-nav li::before {   
    width: 30px;   
    top: 15px;  
    right: -12px;	
}

ul.gp-nav li a {
    width: 30px;
    height: 30px;

}


   }

/* --- 2026 fix: keep flag images at correct aspect ratio in the fixtures list --- */
.match-card_simpleTeamLogo__GJI_i {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.match-card_simpleTeamLogo__GJI_i img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* big "featured" fixture cards at the top of the page */
.match-card_teamLogo__1j0E6 {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.match-card_teamLogo__1j0E6 img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* General Prediction: keep team flags a sensible, consistent size in the selection cards */
.inputGroup .flag {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inputGroup .flag img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

/* ------------------------------------------------------------------ *
 * 2026 fix: Fixtures "simple" cards broke on mobile/tablet.
 *  - 0-767px: an old flex-wrap rule (width:200px title) scattered the
 *    items across the card.
 *  - 768-1023px: no mobile rule applied, so both teams landed in the
 *    same grid cell and overlapped.
 * Rebuild the card as one clean, centred grid for EVERY screen below
 * desktop (<=1023px). Selectors are scoped under the card container and
 * use !important so they win over the older max-width:767px rules that
 * are still in style.css. Desktop (>=1024px) is untouched.
 * ------------------------------------------------------------------ */
@media (max-width: 1023px) {
    .match-card_simpleCardWrapper__M97G- .match-card_simpleCardContainer__1D140 {
        display: grid !important;
        grid-gap: 10px 8px;
        grid-template-areas:
            "title title title"
            "date  date  date"
            "home  vs    away"
            "btns  btns  btns" !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center;
        padding: 16px;
    }

    /* competition / location title — own row, centred */
    .match-card_simpleCardContainer__1D140 .match-card_competitionWrapper__yEzNn {
        grid-area: title !important;
        width: auto !important;
        justify-content: center;
        text-align: center;
    }
    .match-card_simpleCardContainer__1D140 .match-card_cardTitle__3yNfg {
        padding-bottom: 0;
    }

    /* date + time — own row, centred */
    .match-card_simpleCardContainer__1D140 .match-card_simpleDate__2fnLY {
        grid-area: date !important;
        display: flex;
        justify-content: center;
        text-align: center !important;
    }

    /* both teams — flag on top, name below, centred */
    .match-card_simpleCardContainer__1D140 .match-card_simpleTeam__20tt9 {
        display: flex !important;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        grid-gap: 8px;
        margin: 0 !important;
    }
    .match-card_simpleCardContainer__1D140 .match-card_simpleTeam__20tt9.match-card__home__1wf8u {
        grid-area: home !important;
    }
    .match-card_simpleCardContainer__1D140 .match-card_simpleTeam__20tt9:not(.match-card__home__1wf8u) {
        grid-area: away !important;
    }
    .match-card_simpleCardContainer__1D140 .match-card_simpleTeamTitle__3TZTB {
        text-align: center;
    }

    /* the "V" divider — centred between the teams */
    .match-card_simpleCardContainer__1D140 .match-card_vs__1itYD {
        grid-area: vs !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }

    /* Predict Now button — full width under the teams */
    .match-card_simpleCardContainer__1D140 .match-card_simpleBtns__2PYwE {
        grid-area: btns !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Very small phones: tighten the big "featured" cards so long team names
   don't crowd. Only reduces the gap — purely a safe fit improvement. */
@media (max-width: 575px) {
    .match-card_vsRow__3rQoC {
        grid-column-gap: 14px;
    }
}

