/* Estilos generales */
.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card {
    transition: transform .2s;
}
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,.12);
}
.navbar-brand h1 {
    font-weight: 700;
}

/* Estilos para el mapa */
#map { 
    height: 300px; 
    cursor: crosshair; 
}

/* Estilos para el círculo azul pulsante */
.leaflet-pulsing-icon {
    border-radius: 50%;
    background-color: #007bff;
    border: 2px solid #007bff;
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Estilos permanentes para el footer de navegación */
body {
    padding-bottom: 70px;
}
.mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background-color: #ffffff;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1030;
}
.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.75rem;
}
.mobile-nav a i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}
.mobile-nav a.active {
    color: #0d6efd; 
}
        .restaurant-card {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden; /* Importante para que el banner respete los bordes redondeados */
            transition: all 0.3s ease;
        }
        .restaurant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .banner-container {
            position: relative;
        }
        .restaurant-banner {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }
        .restaurant-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid white;
            position: absolute;
            bottom: -50px; /* La mitad de la altura para que quede a la mitad */
            left: 50%;
            transform: translateX(-50%);
            object-fit: cover;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .card-body {
            padding-top: 50px; /* Espacio para el logo que se superpone */
        }
        .status-badge {
            font-weight: 500;
        }