::-webkit-scrollbar {
    width: 0;
}

.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    max-width: 300px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    z-index: 1000;
    opacity: 0;
    animation: fadeInOut 5s forwards;
}

.notification-popup.success {
    background-color: #4CAF50;
    /* Green */
}

.notification-popup.error {
    background-color: #f44336;
    /* Red */
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }
}

body {
    background-color: #EBEDED;
    font-family: 'Roboto Condensed', sans-serif;
    height: 100vh;
    /* Ensures full viewport height */
    margin: 0;
    /* Remove default body margin */
    overflow-x: hidden;
    /* Hide horizontal overflow */
}


.league-create-btn {
    align-items: center;
    background-clip: padding-box;
    background-color: #C42414;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.league-create-btn:hover,
.league-create-btn:focus {
    background-color: #7C0B00;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.league-create-btn:hover {
    transform: translateY(-1px);
}

.league-create-btn:active {
    background-color: #7C0B00;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.modal-content-league {
    background-color: #EBEDED;
}

.modal-header-league {
    border-radius: 10px 10px 150px 0px;
    background: linear-gradient(90deg, #C42414 2.81%, #7C0B00 97.57%);
    color: #FFFFFF;
    border: none;
    /* height: 30vh; */
}

.modal-header-league-done {
    border-radius: 10px 10px 150px 150px;
    background: linear-gradient(90deg, #C42414 2.81%, #7C0B00 97.57%);
    color: #FFFFFF;
    border: none;
    /* height: 30vh; */
}

.modal-footer-league {
    border: none;
}

.fi-label {
    color: #0B0B0B;
}

.form-select-league-type {
    height: 72px;

}

.division-card {
    background-color: #EBEDED;
}

.modal-content-league2 {
    background-color: #EBEDED;
}


@media screen and (min-width: 768px) {
    html {
        font-size: 18px;
        /* Base font size for medium-sized screens (tablets) */
    }
}

@media screen and (min-width: 1200px) {
    html {
        font-size: 20px;
        /* Base font size for larger screens (desktops) */
    }
}



.divider span {
    font-size: 14px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #000;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

#facebook-button {
    border-radius: 3px !important;
    border: 1px solid lightgray
}