/* Table View Styles */
.aithyra-restaurants-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.aithyra-restaurants-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
}

.aithyra-restaurants-table th,
.aithyra-restaurants-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.aithyra-restaurants-table th {
    background-color: #f8f8f8;
    font-weight: bold;
    color: #333;
}

.aithyra-restaurants-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.aithyra-restaurants-table tr:hover {
    background-color: #f1f1f1;
}

.price-range {
    font-size: 18px;
    color: #2a9d8f;
    font-weight: bold;
}

.rating {
    color: #f4a261;
    font-size: 16px;
}

.star.filled {
    color: #e76f51;
}

.aithyra-restaurants-table a {
    color: #2a9d8f;
    text-decoration: none;
}

.aithyra-restaurants-table a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .aithyra-restaurants-table {
        display: block;
    }

    .aithyra-restaurants-table thead {
        display: none;
    }

    .aithyra-restaurants-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .aithyra-restaurants-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .aithyra-restaurants-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 15px);
        padding-right: 10px;
        font-weight: bold;
        text-align: left;
    }

    .aithyra-restaurants-table td:last-child {
        border-bottom: 0;
    }
}

/* Card View Styles */
.aithyra-guide-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    color: #1f2937;
    line-height: 1.6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.aithyra-guide-container h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    border-bottom: 3px solid #f97316;
    padding-bottom: 0.5rem;
}

.aithyra-guide-container h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d1d5db;
    padding-bottom: 0.5rem;
}

.aithyra-guide-container a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.aithyra-guide-container a:hover {
    text-decoration: underline;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.food-card {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.food-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #111827;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.food-card .type {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.food-card .cuisine {
    font-size: 0.9rem;
    color: #f97316;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.food-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    flex-grow: 1;
    min-height: 4rem;
}

.food-card .meta {
    margin-bottom: 1rem;
}

.food-card .location {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.25rem;
    display: block;
}

.food-card .price {
    color: #f97316;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.food-card .rating {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.food-card .button {
    display: block;
    background-color: #0a6478;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: background-color 0.2s;
}

.food-card .button:hover {
    background-color: #085a6b;
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-left: 0.25rem;
}

.stars .filled {
    color: #f59e0b;
}

.stars .empty {
    color: #d1d5db;
}

.suggested-by {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.75rem;
    text-align: right;
}

/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .aithyra-guide-container {
        padding: 1.5rem;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .food-card h3 {
        font-size: 1.2rem;
    }
}
/* Filter Styles */
.aithyra-restaurants-filters {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-weight: 600;
    color: #4b5563;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    font-size: 14px;
}

.filter-button {
    background-color: #0a6478;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filter-button:hover {
    background-color: #085a6b;
}

/* Comment Box Styles */
.comment-box {
    background-color: #f3f4f6;
    border-left: 4px solid #f97316;
    padding: 12px;
    margin: 10px 0;
    border-radius: 4px;
    font-style: italic;
    color: #4b5563;
}

/* Price and Rating Labels */
.price-label, .rating-label {
    font-weight: 600;
    color: #6b7280;
    margin-right: 5px;
}