* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: transparent;
    /* background-image: radial-gradient(at bottom right, #026E80 0%, #014550 70%); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}

.quote-container {
    width: 100%;
    max-width: 400px;
}

.quote-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.title-underline {
    width: 100%;
    height: 3px;
    background-color: #ffa500;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: stretch;
}

.form-control {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
    background: white;
    color: #666;
}

.form-control:focus {
    outline: none;
}

.input-icon {
    background: #ffa500;
    width: 40px;
    border-radius: 0 4px 4px 0;
    color: #004d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer; /* Agregar cursor pointer */
    transition: background-color 0.3s ease; /* Agregar transición */
}

.input-icon:hover {
    background-color: #ff9000; /* Color más oscuro al pasar el mouse */
}

.date-inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.date-inputs .input-group {
    flex: 1;
    max-width: calc(50% - 5px);
}

.date-inputs .form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9rem;
}

input[type="date"] {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control::placeholder {
    color: #666;
    opacity: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

.quote-button {
    width: 100%;
    padding: 10px 15px;
    background: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    color: #666;
    position: relative;
    padding-right: 40px;
    text-align: left;
    transition: color 0.3s ease;
}

.quote-button.has-result {
    color: #004d4d;
    font-weight: bold;
}

.quote-button::after {
    content: "$";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: #ffa500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 4px 0;
    color: #004d4d;
    font-weight: bold;
}

@media (max-width: 480px) {
    .quote-title {
        font-size: 1.5rem;
    }
    .date-inputs {
        flex-direction: column;
    }
    .date-inputs .input-group {
        max-width: 100%;
    }
}