body {
    font-family: Arial, sans-serif;
    background-color: #eef2f5;
    margin: 0;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
}

.setor {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.nome-proc {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

input[type="text"],
input[type="number"],
input[type="time"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="text"],
input[type="number"] {
    width: 100%;
}

/* Botões padrão */
button {
    padding: 10px;
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Botão Repetir Nomes */
button.repetir {
    background-color: #28a745; /* verde */
}

button.repetir:hover {
    background-color: #1e7e34;
}

/* Botão Gerar Relatório */
button.gerar {
    background-color: #fd7e14; /* laranja */
}

button.gerar:hover {
    background-color: #e8590c;
}

.output {
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #007BFF;
    white-space: pre-line;
    font-family: monospace;
}

/* Para alinhar nome do setor e horários lado a lado */
.setor label {
    font-weight: bold;
}

.setor .setor-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.setor .setor-info input[type="text"] {
    flex: 1;
    min-width: 150px;
}

.setor .setor-info label {
    white-space: nowrap;
    font-weight: normal;
}

.setor .setor-info input[type="time"] {
    width: 120px;
}
