/* Styles for index.php */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.navbar-nav .nav-link {
    color: #ffffff;
    margin-right: 15px;
}
.testimonial {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 20px;
}
aside {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
}
aside .list-group-item a {
    text-decoration: none;
    color: #000;
}
aside .list-group-item a:hover {
    text-decoration: underline;
}
.restaurant-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.search-results {
    margin-top: 20px;
}
.restaurant-address {
    margin-bottom: 10px;
    color: #555;
}

.restaurant-address i {
    margin-right: 5px;
    color: #007bff;
}
/* Estilo para el enlace de saltar al contenido */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #007bff;
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}


/* Mejorar el foco visual para todos los elementos interactivos */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}
/* Estilo para el anuncio de resultados de búsqueda para lectores de pantalla */
.sr-announcement {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}