body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px 10px;
    background-color: #212529; /* Fundo Escuro */
    color: #f8f9fa; 
}
.container {
    max-width: 450px;
    margin: 0 auto;
    background: #343a40; 
    padding: 15px;
    border-radius: 12px; 
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}
h1 {
    color: #ffc107;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Card do Servidor */
.server-card {
    border: none;
    padding: 15px;
    margin-bottom: 15px; 
    border-radius: 8px;
    background-color: #495057;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.server-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px; 
}
.server-info span:first-child {
    font-weight: bold;
    font-size: 1.1em;
    color: #ffffff;
}
.server-info span:last-child {
    text-align: right;
    font-size: 0.9em;
    color: #adb5bd;
}

/* Botões de Ação */
.actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px; 
}
.actions button {
    padding: 12px 10px;
    font-size: 1.0em; 
    width: 49%; 
    border-radius: 6px; 
    border: none;
    cursor: pointer;
}
.add {
    background-color: #28a745;
    color: white;
}
.minus {
    background-color: #dc3545;
    color: white;
}

/* Lucro Individual e Diário */
.profit-individual {
    font-size: 1.1em;
    color: black; /* COR PRETA SOLICITADA */ 
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* Total Diário */
.total-daily {
    text-align: center;
    padding: 20px 15px; 
    margin-top: 15px; 
    margin-bottom: 25px;
    border-radius: 8px;
    background-color: #17a2b8;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.total-daily h2 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.4em;
}

/* Botões de Utilitário */
.utility-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}
.utility-buttons button {
    width: 50%;
    padding: 12px;
    font-size: 1.0em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
.report-btn {
    background-color: #007bff;
    color: white;
}
.reset-button {
    background-color: #6c757d; 
    color: white; 
}

#currentDateDisplay {
    text-align: center;
    font-size: 0.9em;
    color: #adb5bd;
    margin-bottom: 15px;
}