body{
    background-color: #1d2b2d;
}
#estimate-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #1d2b2d; /* Fondo oscuro */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #000;
}

#estimate-form h2 {
    text-align: center;
    color: #2bc4e3; /* Color de acento */
    margin-bottom: 20px;
}

#estimate-form h3 {
    color: #ffffff;
    margin-top: 20px;
    border-bottom: 2px solid #2bc4e3;
    padding-bottom: 5px;
}

#estimate-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #f0f0f0;
}

#estimate-form input,
#estimate-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #2a3b3d; /* Fondo de los inputs */
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    color: #ffffff;
}

#estimate-form input:focus,
#estimate-form select:focus {
    outline: none;
    border-color: #2bc4e3;
    box-shadow: 0 0 8px rgba(43, 196, 227, 0.5);
}

#estimate-form input[type="file"] {
    padding: 5px;
    background: none;
    border: none;
}

#estimate-form button {
    width: 100%;
    padding: 12px;
    background: #2bc4e3; /* Color de acento */
    color: #1d2b2d;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#estimate-form button:hover {
    background: #199cb8;
    transform: scale(1.05);
}

#discount-display {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700; /* Amarillo dorado */
    background: #8B0000; /* Rojo oscuro */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 2px solid #FF4500; /* Rojo anaranjado */
    box-shadow: 0px 4px 10px rgba(255, 69, 0, 0.5); /* Sombra roja */
    margin-top: 10px;
    transition: transform 0.2s ease-in-out;
}

#discount-display:hover {
    transform: scale(1.05);
}

