/* Estilo geral do body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
}

/* Container principal */
.container {
    width: 100%;
    margin: 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Estilo dos botões */
button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

/* Botões específicos */
button#btnSair {
    background-color: #dc3545;
}

button#filtrar-btn {
    background-color: #007bff;
}

button#limpar-filtro-btn {
    background-color: #28a745;
}

/* Container dos botões de cabeçalho */
.header-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Input de data */
input[type="month"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Grid dos vendedores */
.vendedores-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between; /* Distribui os itens de ponta a ponta */
}

/* Estilo dos boxes dos vendedores */
.vendedor-box {
    flex: 1 1 250px; /* Os boxes terão uma largura mínima de 250px e ocuparão o espaço disponível */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

/* Estilo para os detalhes do vendedor */
.vendedor-box h2 {
    margin-top: 0;
    color: #343a40;
    font-size: 20px;
    font-weight: 600;
}

.vendedor-box .detalhes p {
    margin: 8px 0;
    color: #555;
}

/* Estilo para o título principal */
h1 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
