
html {
  scrollbar-color: #A09C76 #444; /* cor-cursor cor-faixa */
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px; /* largura da barra */
}

::-webkit-scrollbar-track {
  background: #A09C76; /* cor da faixa */
}

::-webkit-scrollbar-thumb {
  background-color: #444; /* cor do cursor */
  border-radius: 20px; /* bordas arredondadas */
  border: 3px solid #A09C76; /* espaçamento ao redor do cursor */
}


/* =========================
   RESET / BASE
========================= */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #A09C76;
    padding: 20px;
    color: #333;
    
}

* {
    box-sizing: border-box;
}

/* =========================
   CONTAINER
========================= */
.base{
    background-color: #23242a;
    padding: 10px 10px;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.header{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background-color: #23242a;
    justify-content: center;
    border-radius: 0px 0px 10px 10px;
    min-height: 60vh;
}

/* =========================
   BOX / CARD
========================= */
.box {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    width: 350px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.box_icon{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.titulo{
    margin-top: 5px;
    color:#A09C76;
    padding-top: 35px;
    padding-left: 10px;
}
.data{
    color:#A09C76;
}

.buttonAcoes{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;

}
.acoes-gerais{
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* =========================
   TABELAS
========================= */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    /* border-radius: 8px; */
    
    margin-bottom: 10px;

}

th {
    background: #e9eef5;
    font-weight: 600;
    font-size: 11px;
    padding-left: 10px;
    padding-right: 10px;
    
}

th,
td {
    border: 2px solid #ccc;
    padding: 8px;
    text-align: center;
    font-size: 11px;
}
.tabela-latas{
    border: 2px solid #ccc;
    padding: 8px;
    text-align: center;
    font-size: 11px;
}

/* =========================
   INPUTS
========================= */
input {
    width: 70px;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 11px;
}

input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* =========================
   BOTÕES
========================= */
h2, h3{
    color: #fff;
}
button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    background: #A09C76;
    color: #000;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}
#nomes{
    color: #000;
}

button:hover {
    background: #357bd8;
}

button:active {
    transform: scale(0.98);
}

/* Botão adicionar */
.button_Adicionar {
    width: 100%;
}

/* Botão excluir */
.btn-excluir,
button.excluir {
    background: #e74c3c;
}

.btn-excluir:hover,
button.excluir:hover {
    background: #c0392b;
}

/* =========================
   BASE (BOTÕES FINAIS)
========================= */
.base {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.base button {
    width: 200px;
    padding: 10px;
    margin: 0;
}

/* =========================
   DATA / CALENDÁRIO
========================= */
.campo-data {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.calendario {
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
}

#dataPedido {
    width: 170px;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
}






.meusDados{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.meusDados a{
    text-decoration: none;
    color: var(--color-hijg);
}
.meusDados span{
    font-size: 10px;
    text-decoration: none;
}
.meusDados h6{
    padding-bottom: 20px;
    margin-top: 0;
    padding: 0;
    padding-bottom: 2px;
    margin-bottom: 3px;
}

/* =========================
   IMPRESSÃO
========================= */
@media print {

    /* Esconde botões, ícones e inputs */
    button,
    input,
    .acoes-gerais,
    img {
        display: none !important;
    }
    .meusDados{
        display: none !important;
    }

    /* Remove caixas e layout pesado */
    .box {
        border: none;
        box-shadow: none;
        margin-bottom: 20px;
    }

    /* Ajusta títulos */
    h1 {
        font-size: 20px;
        text-align: center;
    }

    h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    /* Tabelas viram lista simples */
    table {
        width: 100%;
        border: none;
    }

    thead {
        display: none;
    }

    tbody tr {
        border: none;
    }

    tbody td {
        border: none;
        padding: 2px 0;
        font-size: 12px;
    }

    /* Destaque para totais */
    .totais-ml,
    .totais-latas {
        font-weight: bold;
        font-size: 14px;
        margin-top: 5px;
    }

}

/* =========================
   MODAL
========================= */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.5); 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.config-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.config-item {
    display: flex;
    flex-direction: column;
}

.config-item label {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

.config-item input {
    width: 100%;
}
