/* Estilos personalizados para botones */

/* Estilo para todos los botones de Bootstrap */
.btn-danger, 
.btn-outline-danger,
.btn-primary,
.btn-outline-primary,
.btn-secondary,
.btn-outline-secondary {
    color: #dc3545 !important; /* Texto rojo */
    border: 2px solid #dc3545 !important; /* Borde rojo */
    background-color: #FFD700 !important; /* Fondo amarillo */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover, 
.btn-outline-danger:hover,
.btn-primary:hover,
.btn-outline-primary:hover,
.btn-secondary:hover,
.btn-outline-secondary:hover {
    background-color: #FFD700 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    opacity: 0.9;
}

/* Estilo específico para el título "Haz tu Pedido" */
#ordenar h2 {
    color: #FFD700 !important; /* Amarillo */
}

/* Estilo para los botones de ubicación */
.location-btn {
    color: #FFD700 !important; /* Texto amarillo */
    border: 2px solid #dc3545 !important; /* Borde rojo */
    background-color: #dc3545 !important; /* Fondo rojo */
}

.location-btn:hover {
    background-color: #dc3545 !important;
    opacity: 0.9;
}

/* Estilo para el botón de volver al inicio */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: #FFD700 !important;
    background-color: #dc3545 !important;
    border: 2px solid #FFD700 !important;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    opacity: 0.9;
}

/* Estilo para el botón de agregar producto */
#addItemBtn {
    color: #dc3545 !important; /* Texto rojo */
    border: 2px solid #dc3545 !important; /* Borde rojo */
    background-color: #FFD700 !important; /* Fondo amarillo */
}

#addItemBtn:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}