
.badge-info {
    color: #ffffff !important;
    font-size: 12px;
    border-radius: 2px;
    margin: 0;
    display: inline-block;
    padding: 8px 8px !important;
    background: #000000;
}

    .badge-info:hover {
        color: #ffffff !important;
        background: #00c100 !important;
    }

    .badge-info:focus,
    .badge-info:active {
        color: #ffffff !important;
    }

.badge-dark {
    background: #00c100 !important;
}

.badge-info[href]:focus, .badge-info[href]:hover {
    font-weight: normal;
}

.badge-dark[href]:focus, .badge-dark[href]:hover {
    /*color: #ffffff !important;*/
    color: #639bc9 !important;
}

/********************************/


.badge-info2 {
    color: #ffffff !important;
    font-size: 12px;
    border-radius: 1px;
    margin: 0;
    display: inline-block;
    /*padding: 1px 1px !important;*/
    padding: 0px !important;
    background: #000000;
}

    .badge-info2:hover {
        color: #ffffff !important;
        background: #00c100 !important;
    }

    .badge-info2:focus,
    .badge-info2:active {
        color: #ffffff !important;
    }

.badge-dark {
    background: #00c100 !important;
}

.badge-info2[href]:focus, .badge-info[href]:hover {
    font-weight: normal;
}

.badge-dark[href]:focus, .badge-dark[href]:hover {
    color: #ffffff !important;
}

.list-group-item.active {
    background: #00c100 !important;
    color: #ffffff !important;
    border-color: #00c100 !important;
}
/*
************** botao lua ***********/

:root {
    /* Cores Fixas (Marca) */
    --brand-blue: #0b1a2e;
    --brand-dark: #010a14;
    --green-neon: #00e600;
    --green-neon-hover: #00c800;
    --green-dark: #018E12;
    --font-family: 'Roboto', sans-serif;

    /* Tema Escuro (Padrão - alinhado com style.css) */
    --body-bg: #070807;
    --card-bg: #101310;
    --header-bg: #080908;
    --text-main: #f5f5f5;
    --text-muted: #8e948d;
    --border-color: #272b27;
    --odd-bg: #151815;
    --match-bg: #101310;
    --input-bg: #ffffff;
    --input-text: #000000;
    --text-light: #86ff00;
    --brand-white: #ffffff;
    --bg-body: #070807;
    --bg-table: #101310;
    --color-text: #f5f5f5;
    --header-text: #f5f5f5;
    --hover-row: #151815;
    --toggle-bg: #333;
    --toggle-text: #fff;
}

body.light-mode {
    /* Tema Claro */
    --body-bg: #f4f6f4;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-color: #e2e8f0;
    --odd-bg: #f3f4f6;
    --match-bg: #ffffff;
    --input-bg: #ffffff;
    --bg-body: #f4f6f4;
    --bg-table: #ffffff;
    --color-text: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s, color 0.3s;
}

/*Header & Login*/
.main-header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    padding: 12px;
    text-align: center;
    background-color: var(--brand-dark);
}

    .top-bar .logo h1 {
        color: var(--green-neon);
        font-size: 20px;
        margin: 0;
        font-weight: 700;
        letter-spacing: 1px;
    }

.login-bar {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 10px;
    background-color: var(--header-bg);
    gap: 6px;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--green-neon);
}

    .login-bar input {
        flex: 1;
        min-width: 100px;
        padding: 6px 8px;
        border: none;
        border-radius: 4px;
        font-size: 12px;
        outline: none;
    }

.btn-login {
    background-color: var(--green-neon);
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

    .btn-login:active {
        background-color: var(--green-neon-hover);
    }

.forgot-pwd {
    color: #ccc;
    font-size: 11px;
    text-decoration: none;
    white-space: nowrap;
}

/*Ticket Action Bar*/
.ticket-bar {
    background-color: var(--brand-white);
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-bottom: 1px solid #222;
}

.ticket-input {
    flex: 1;
    /* Divide o espaço igualmente */
    padding: 8px 6px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--input-text);
    font-size: 15px;
    font-weight: bold;
    outline: none;
    text-align: center;
    min-width: 0;
    /*Permite que o flex-grow funcione corretamente */
}


.ticket-informacoes {
    flex: 1;
    /* Divide o espaço igualmente */
    padding: 8px 6px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--input-text);
    font-size: 15px;
    font-weight: bold;
    outline: none;
    text-align: center;
    min-width: 0;
    /*Permite que o flex-grow funcione corretamente */
}

    .ticket-informacoes span {
        color: var(--green-neon);
        font-weight: bold;
        font-size: 16px;
        /*Valor em destaque*/
    }

.ticket-return {
    flex: 1;
    /*Divide o espaço igualmente */
    color: #888;
    /*Cor de título/label */
    font-size: 17px;
    /*Tamanho de título */
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    width: 25%;
}

    .ticket-return span {
        color: var(--green-neon);
        font-weight: bold;
        font-size: 16px;
        /*Valor em destaque*/
    }

.btn-finish {
    flex: 1;
    /* Divide o espaço igualmente */
    background-color: var(--green-neon);
    color: #000;
    border: none;
    padding: 8px 4px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    /*Ícone em cima do texto para economizar largura */
    align-items: center;
    gap: 2px;
    transition: transform 0.1s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .btn-finish i {
        font-size: 12px;
    }

.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--green-neon);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .theme-toggle:hover {
        background: rgba(255,255,255,0.1);
    }

    .theme-toggle i {
        pointer-events: none;
    }

body.light-mode .theme-toggle {
    border-color: #ccc;
}

/*Actions*/
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 8px;
    background-color: #0e2743;
    gap: 8px;
}

.action-btn {
    text-decoration: none;
    color: white;
    font-size: 11px;
    padding: 10px 5px;
    border-radius: 6px;
    flex: 1 1 30%;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

    .action-btn:active {
        transform: scale(0.97);
    }

    .action-btn i {
        font-size: 18px;
    }

    .action-btn.bg-dark {
        background-color: #1a3c61;
    }

    .action-btn.bg-green {
        background-color: var(--green-neon);
        color: #000;
    }

.sub-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px 10px;
    background-color: var(--header-bg);
}

.sub-btn {
    text-decoration: none;
    color: #e0e0e0;
    background-color: rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 8px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*Main Content*/
.content {
    padding: 12px 10px;
    min-height: 50vh;
}

.league-section {
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.league-header {
    background: var(--league-bg);
    padding: 10px 12px;
}

    .league-header h2 {
        color: var(--text-light);
        font-size: 13px;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
    }

        .league-header h2 i {
            color: var(--green-neon);
        }

/*Matches*/
.match-card {
    background-color: var(--match-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-color);
}

    .match-card:last-child {
        border-bottom: none;
    }

.match-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 8px;
}

.teams {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.match-time {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.odds-container {
    display: flex;
    gap: 4px;
}

.odd-box {
    background-color: var(--odd-bg);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border-radius: 4px;
    font-size: 25px; /*aki*/
}

    .odd-box span {
        font-size: 9px;
        color: #a0a0a0;
        margin-bottom: 1px;
        text-transform: uppercase;
    }

    .odd-box b {
        font-weight: 400 !important;
    }

.odd-more {
    background-color: var(--odd-more-bg);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

Footer
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 24px 15px;
    margin-top: 10px;
}

.footer-notice {
    background-color: var(--green-dark);
    padding: 15px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
    color: white;
    text-align: left;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

    .footer-links li a {
        color: #bbb;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s;
    }

        .footer-links li a:active {
            color: var(--green-neon);
        }

.copyright {
    font-size: 11px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.comboEstabelecimento {
    height: 37px;
    padding: 6px 8px 6px 10px;
}

.neon-text {
    color: greenyellow;
    /*text-shadow: 0 0 5px #0FFF50, 0 0 10px #0FFF50, 0 0 20px #0FFF50;*/
    background-color: black;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}


/* Container principal para o campo e label */
.form-groupX1 {
    display: flex;
    flex-direction: column; /* Coloca o label acima do input */
    flex: 1;
    /* Divide o espaço igualmente */
    padding: 0px 0px;
    /*border: 1px solid var(--border-color);*/
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--input-text);
    font-size: 15px;
    font-weight: bold;
    outline: none;
    text-align: center;
    min-width: 0;
}

    /* Estilo do Título (Label) */
    .form-groupX1 label {
        font-family: Arial, sans-serif;
        font-size: 12px;
        margin-bottom: 0px; /* Espaço entre label e input */
        margin-top: 0px; /* Espaço entre label e input */
        color: black;
        font-weight: bold;
        padding: 0px 0px;
    }

    /* Estilo do Campo de Texto (Input) */
    .form-groupX1 input[type="text"] {
        padding: 0px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 15px;
        width: 100%; /* Ajusta à largura do .form-group */
        min-width: 0;
        box-sizing: border-box; /* Garante que o padding não aumente a largura */
    }

/* Feedback visual ao clicar (responsividade de foco) */
/*        .form-groupX input[type="text"]:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 5px rgba(0,123,255,0.5);
        }*/


/* Container principal para o campo e label */
.form-groupY {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
}
    /* Estilo do Título (Label) */
    .form-groupY label {
        font-family: Arial, sans-serif;
        font-size: 16px;
        margin-bottom: 3px; /* ← alterado de 8px para 3px */
        color: #333;
        font-weight: bold;
    }
    /* Estilo do Campo de Texto (Input) */
    .form-groupY input[type="text"] {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

/* Container principal para o campo e label */
.form-groupX {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0px;
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--input-text);
    font-size: 12px;
    font-weight: bold;
    outline: none;
    text-align: center;
    min-width: 0;
}
    /* Estilo do Título (Label) */
    .form-groupX label {
        font-family: Arial, sans-serif;
        font-size: 10px;
        margin-bottom: 0px; /* ← encostado no input */
        margin-top: 0px;
        color: black;
        font-weight: bold;
        padding: 0px;
        line-height: 0,5; /* ← evita altura extra gerada pela linha */
    }
    /* Estilo do Campo de Texto (Input) */
    .form-groupX input[type="text"] {
        padding: 0px 2px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 12px;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        line-height: 0,5; /* ← sem altura extra */
    }


  /*  ************  tabelas **************/

/*:root {
    --bg-body: #ffffff;
    --bg-table: #f9f9f9;
    --color-text: #333333;
    --border-color: #dddddd;
    --header-bg: #4CAF50;
    --header-text: #ffffff;
    --hover-row: #f1f1f1;
    --toggle-bg: #333;
    --toggle-text: #fff;
}*/

/* 2. Definição do Tema Escuro (via atributo data-theme) */
[data-theme="light"],
body.light-mode {
    --bg-body: #f4f6f4;
    --bg-table: #ffffff;
    --color-text: #111827;
    --border-color: #e2e8f0;
    --header-bg: #ffffff;
    --header-text: #111827;
    --hover-row: #f3f4f6;
    --toggle-bg: #ffffff;
    --toggle-text: #111827;
}

/* 3. Estilos Gerais com Transição Suave */
body {
    background-color: var(--bg-body);
    color: var(--color-text);
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
    padding: 20px;
}

/* 4. Estilos da Tabela com Cores Variáveis */
table {
    border-collapse: collapse;
    width: 100%;
    background-color: var(--bg-table);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s, border-color 0.3s;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--header-bg);
    color: var(--header-text);
}

tr:hover {
    background-color: var(--hover-row);
}

/* 5. Estilo do Botão Toggle */
.theme-toggle {
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--toggle-bg);
    color: var(--toggle-text);
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}