/* --- Base do Formulário --- */
.apice-solar-form-wrapper {
    max-width: 700px;
    margin: 20px auto; /* Centraliza o formulário */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.apice-solar-form-wrapper h3 {
    border-bottom: 2px solid #ff9900; /* Cor da Apice Solar */
    padding-bottom: 5px;
    margin-top: 25px;
    color: #333;
}

/* --- Estilo dos Campos de Entrada (Inputs e Textareas) --- */
.apice-solar-form-wrapper label {
    display: block; /* Garante que o label ocupe toda a largura */
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.apice-solar-form-wrapper input[type="text"],
.apice-solar-form-wrapper input[type="number"],
.apice-solar-form-wrapper textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura total */
    
    /* CORREÇÃO DO PROBLEMA DO BACKGROUND PRETO */
    background-color: #fff; 
    color: #333; /* Cor do texto digitado */
    
    /* Estilo para campos não editáveis (cálculos) */
    transition: background-color 0.3s;
}

/* Destaca campos de cálculo não editáveis */
.apice-solar-form-wrapper input[readonly] {
    background-color: #eee;
    font-weight: bold;
    color: #0056b3; /* Cor para destacar o valor calculado */
}

/* --- Estilo do Botão --- */
.apice-solar-form-wrapper button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #ff9900; /* Laranja da Apice Solar */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.apice-solar-form-wrapper button[type="submit"]:hover:not(:disabled) {
    background-color: #e68a00;
}

.apice-solar-form-wrapper button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: wait;
}

/* --- Estilo das Mensagens (Sucesso/Erro) --- */
#asf-message.success {
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #4CAF50;
    background-color: #e8f5e9;
    color: #388e3c;
    border-radius: 4px;
}

#asf-message.error {
    padding: 10px;
    margin-top: 15px;
    border: 1px solid #f44336;
    background-color: #ffebee;
    color: #d32f2f;
    border-radius: 4px;
}

/* --- Responsividade (Ajustes para telas menores) --- */
@media (max-width: 600px) {
    .apice-solar-form-wrapper {
        padding: 15px;
        margin: 10px;
    }
}