/* Estilos principales */
#pakke-cotizador-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"], input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn-submit {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn-submit:hover {
    background-color: #005177;
}

/* Resultados en grid */
#pakke-cotizador-result {
    margin-top: 20px;
}
.pakke-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Tarjetas de resultados */
.pakke-result-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}
.pakke-result-card:hover {
    transform: translateY(-3px);
}

/* Información del courier */
.courier-info {
    text-align: center;
}
.courier-logo {
    max-width: 80px;
    margin-bottom: 10px;
}
.courier-info h3 {
    margin: 5px 0;
}
.service, .delivery-days, .estimated-date, .precio, .best-option {
    margin: 4px 0;
    font-size: 0.9em;
}
.best-option {
    font-weight: bold;
    color: green;
}

/* Estilo para errores */
.error {
    padding: 10px;
    background: #ffe6e6;
    color: red;
    border: 1px solid red;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px;
}
