﻿/*
.container-md {
    min-height: calc(100vh - 2rem);
}
*/

.beach-volleyball-loader {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .beach-volleyball-loader .ball {
        width: 20px;
        height: 20px;
        background-color: #f4b400;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 0 0 2px #db4437, 0 0 0 4px #4285f4;
        animation: bounce 1s ease-in-out infinite;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Ensure the icon is vertically centered */
.col-4.dropdown {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Optionally, you might want to ensure the dropdown menu is styled correctly */
.dropdown-menu {
    display: none; /* Initially hide the dropdown menu */
}

    .dropdown-menu.show {
        display: block; /* Show the dropdown menu when toggled */
    }

html {
    overscroll-behavior: none;
    /*min-height: 100%;*/
}

body {
    font-family: 'Roboto';
    overscroll-behavior: none;
    /*min-height: 100%;*/
}

a {
    text-decoration: none;
    font-size: 12px;
}

/* disables border in image */
img:not([src]) {
    display: none;
}

.gc-header-height {
    min-height: 48px;
}

.box-flex-col {
    display: flex;
}

.box-standard {
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 1%;
    padding-bottom: 1%;
    border-bottom-style: solid;
    border-width: 1px;
}

.img-symbol {
    width: 48px;
    height: 48px;
}

.img-link {
    width: 35px;
    height: 35px;
}

.img-link-facebook {
    width: 19px;
    height: 35px;
}

.img-link-web {
    width: 38px;
    height: 28px;
}

.img-userphoto {
    width: 50px;
    height: 50px;
}

.div-100 {
    width: 100%;
}

.div-50 {
    width: 50%;
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-hourglass:after {
        content: " ";
        display: block;
        border-radius: 50%;
        width: 0;
        height: 0;
        margin: 8px;
        box-sizing: border-box;
        border: 32px solid #000;
        border-color: #000 transparent #000 transparent;
        animation: lds-hourglass 1.2s infinite;
    }

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

.gc-header-font-size {
    font-size: 16px;
}

/* Font size for medium devices (tablets, small laptops) */
@media screen and (min-width: 400px) {
    .gc-header-font-size {
        font-size: 18px;
    }
}

.gc-font-size-14 {
    font-size: 14px;
}

.default-hover:hover {
    cursor: default;
}

.gc-float-left {
    float: left;
}

.matchDiv {
    font-size: 16px;
    border-radius: 6px;
    background: #bb9b44;
    color: rgb(0, 0, 0);
    min-height: 47px;
    margin-left: 2px;
    margin-right: 2px;
}

.matchBlinkingDiv {
    font-size: 16px;
    animation: blinker 2s linear infinite;
    border-radius: 6px;
    background: #bb9b44;
    color: rgb(0, 0, 0);
}

.gameResultDiv {
    border-radius: 12px;
}

.gameResultGreenDiv {
    border-radius: 6px;
    background: #16C138;
}

.gameResultRedDiv {
    border-radius: 6px;
    background: #ED4242;
}

.gameResultYellowDiv {
    border-radius: 6px;
    background: rgb( 210, 210, 0);
}

.setsResultDiv {
}

.gameResultDivLive {
    border-radius: 6px;
    background: white;
    color: black;
}

.gameResultYellowDivLive {
    border-radius: 6px;
    background: rgb( 210, 210, 0);
}

.gameResultGreenDivLive {
    border-radius: 6px;
    background: #16C138;
}

.gameResultRedDivLive {
    border-radius: 6px;
    background: #ED4242;
}

.gameSetsResultDivLive {
    border-radius: 6px;
}

.gameSetsResultGreenDivLive {
    border-radius: 6px;
}

.gameSetsResultRedDivLive {
    border-radius: 6px;
}

.disclaimer {
    font-size: 12px;
    color: rgb(0, 0, 0);
}

.img-sponsor {
    text-align: center;
}

.gc-offcanvas {
    width: 223px;
}

.float-left {
    float: left;
}

.ml5 {
    margin-left:5px;
}

.text-size-10 {
    font-size: 10px;
}

.text-size-12 {
    font-size: 12px;
}

.text-size-14 {
    font-size: 14px;
}

.text-size-24 {
    font-size: 24px;
}

.text-size-32 {
    font-size: 32px;
}

.menu-footer {
    height: 82px;
    background: #F2F1F6;
    border-top-right-radius: 30px;
    box-shadow: 2px -3px 5px rgba(0, 0, 0, 0.16);
}

.border-grey {
    border-color: grey;
}

.settings-header-small {
    height : 19px;
    width: 100%;
    background-color: #323232;
    font-size: 14px;
    padding-left: 16px;
    color: white;
}

/* Text Colors */
.red {
    color: red;
}

.dark-yellow {
    color: rgb(246,190,0);
}

.dark-blue {
    color: darkblue;
}

.orange {
    color: orange;
}

.dark-sea-green {
    color: darkseagreen;
}

.bg-light-grey {
    background-color: #F2F1F6;
}

/* Buttons */
.gc-button {
    background: #F2F1F6;
    border-radius: 4px;
    width: 160px;
    height: 25px;
    color: black;
    text-align: center;
    font-size: 14px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.16);
}

.gc-button-link {
    border-radius: 6px;
    height: 24px;
    border: 1px solid #D6D6D8;
    color: black;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.close-modal {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: black;
    opacity: 1;
    text-shadow: none;
    background-color: transparent;
    border: none;
    padding: 0;
}

.photo-sharing-btn {
    background-color: black !important;
    border: none !important;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 24px;
    margin-right: 2px;
}

    .photo-sharing-btn:focus, .photo-sharing-btn:hover {
        background-color: black !important;
        box-shadow: none !important;
    }

.game-table-btn {
    background-color: black !important;
    border: none !important;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 24px;
    margin-right: 2px;
}

    .game-table-btn:focus, .game-table-btn:hover {
        background-color: black !important;
        box-shadow: none !important;
    }

.material-icons {
    color: white;
    font-size: 16px;
    vertical-align: middle;
}

.entry {
    border: 1px solid #000;
    padding: 5px;
    width: 100%;
}

#menu-body {
    overflow-y: scroll; /* Makes the content scrollable */
}

    #menu-body::-webkit-scrollbar {
        display: none; /* Hides the scrollbar in WebKit browsers */
    }

#menu-body {
    -ms-overflow-style: none; /* Hides the scrollbar in IE and Edge */
}

/* Ajustar o Canvas para ocupar todo o espaço disponível ao maximizar */
.modal-fullscreen #photoCanvas {
    width: 100%;
    height: 100%;
}

/* Adicione este estilo para garantir que o canvas ocupe o máximo possível dentro do modal */
#photoCanvas {
    max-width: 100%;
    height: auto;
}

.sets-result {
    font-size: 0.8em;
    color: #555;
    margin-left: 5px;
}

.team-symbol {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-left: 5px;
}

.team-name {
    /* Estilos para o nome da equipe */
}

.card-header {
    font-size: 1.2em;
}

.row.border-bottom {
    border-bottom: 1px solid #dee2e6;
}
/* Ajustes para dispositivos menores */
@media (max-width: 576px) {
    .card-header {
        font-size: 1em;
    }

    .col-3, .col-4, .col-2 {
        font-size: 0.9em;
    }
}

/* It's defined in the individual teams CSS*/
.team_colors {}

.material-icons-outlined.star-icon {
    /* Garantir que o botão não tenha estilos que atrapalhem a interação */
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.no-focus-outline:focus,
.no-focus-outline:active,
.no-focus-outline:hover {
    outline: none;
    box-shadow: none;
    border: none;
}

/* Parsed records for excel upload */

/* Color coding for fuzzy match quality */
.good-match {
    background-color: lightgreen !important;
}

.medium-match {
    background-color: yellow !important;
    font-weight: bold;
}

.bad-match {
    background-color: lightcoral !important;
}
/* Increase field size for usability */
.wide-field {
    min-width: 200px;
    height: 2.5em;
    font-size: 1em;
}
/* Full‑width, extra‑large modal (Bootstrap) */
.modal-dialog.modal-xl {
    max-width: 100%;
}
/* Ensure the table is responsive */
.table-responsive {
    overflow-x: auto;
}
/* Alternating row colors for game blocks (each game uses two rows) */
.game-block-even {
    background-color: #f9f9f9 !important;
}

.game-block-odd {
    background-color: #ffffff !important;
}

.save-btn {
    font-size: 1.2em;
}