/* Convierte el bloqueo total en una tarjeta flotante elegante */
#order-notice-loading {
    position: fixed; /* Fijo en pantalla pero no cubre todo */
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    width: 350px;
    background: #fff; /* Fondo blanco limpio */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 99999;
    border-left: 5px solid #28a745; /* Línea verde indicando éxito/orden */
    animation: slideIn 0.3s ease-out;
}

#order-notice-loading-text {
    position: relative;
    top: auto;
    height: auto;
    padding: 20px;
    text-align: left;
    color: #333;
}

#order-notice-message {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Botón más amigable */
#notice-accept-btn {
    display: inline-block;
    background: #28a745; /* Verde WooCommerce */
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

#notice-accept-btn:hover {
    background: #218838;
}

/* Animación de entrada */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}