#tew-delivery-calculator {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

#tew-delivery-calculator p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

#tew-delivery-calculator p strong {
    color: #d9534f; /* Color rojo para resaltar la nota */
}

#tew_delivery_address {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#tew-use-location, #tew-express-order {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px;
}

#tew-use-location:hover, #tew-express-order:hover {
    background-color: #005177;
}

#tew-delivery-time {
    margin-top: 10px;
    font-weight: bold;
    color: #0073aa;
}

/* Estilos para el pop-up */
#tew-express-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#tew-express-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Estilos para el formulario */
#tew-express-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#tew-express-form label {
    font-weight: bold;
}

#tew-express-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#tew-express-form button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

#tew-express-form button:hover {
    background-color: #005177;
}