body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f0f8ff; /* Azul bem suave */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 95%; /* Para responsividade em telas menores */
    background-color: #e6f7ff; /* Azul mais claro para o container */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

h2 {
    border-bottom: 2px solid #bbdfff; /* Linha suave abaixo dos subtítulos */
    padding-bottom: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

h3 {
    border-bottom: 1px solid #bbdfff;
    padding-bottom: 5px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.input-section, .eletroduto-section, .results-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #bbdfff; /* Borda mais suave */
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

select, input[type="number"] {
    width: calc(100% - 12px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    width: 100%; /* Botão responsivo */
    margin-top: 15px;
}

button:hover {
    background-color: #0056b3;
}

.cable-input {
    border: 1px solid #bbdfff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #e0f2f7; /* Cor suave para os inputs de cabo */
}

.cable-input h3 {
    margin-top: 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remove-cable {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    align-self: flex-start; /* Alinhar à esquerda */
}

.remove-cable:hover {
    background-color: #c82333;
}

.results-section {
    background-color: #f0f8ff; /* Cor suave para a seção de resultados */
    border-color: #add8e6; /* Borda suave para a seção de resultados */
}

.results-section h3 {
    color: #555;
    border-bottom-color: #add8e6;
}

.results-section p {
    color: #333;
    margin-bottom: 8px;
}

#diametro-nominal-digitado {
    display: none;
}

.form-group i, h2 i, h3 i {
    margin-right: 5px;
    color: #007bff; /* Cor dos ícones */
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    button {
        font-size: 1em;
        padding: 8px 12px;
    }
}