﻿
.restaurantes-container {
    padding: 20px;
}

.restaurante-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
    justify-content: space-between;
}

    .restaurante-card:hover {
        transform: scale(1.02);
    }

.restaurante-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.restaurante-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.restaurante-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

.restaurante-rating {
    min-width: 70px;
}

.rating-stars i {
    font-size: 14px;
    margin-right: 2px;
}

.filtro-topo {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 0;
}


.filtro-input {
    border: none;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

    .filtro-input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
    }


.with-icon {
    padding-left: 35px !important;
}

.select-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #d63384;
    pointer-events: none;
}

#searchInput {
    padding-left: 35px !important;
}

#semResultados {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}