* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #023047;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fb8500, #ffb703);
    color: white;
    padding: 30px;
    border-radius: 10px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box input,
.search-box select,
.search-box button {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.search-box input {
    flex: 1;
    min-width: 300px;
}

.search-box button {
    background: #fb8500;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.search-box button:hover {
    background: #ffb703;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

#map {
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.restaurant-list {
    height: 500px;
    overflow-y: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.restaurant-card {
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #fb8500;
    background: #f9f9f9;
    border-radius: 5px;
}

.restaurant-card h3 {
    color: #023047;
    margin-bottom: 5px;
}

.restaurant-card .rating {
    color: #fb8500;
    font-weight: bold;
}

.restaurant-card .type {
    color: #666;
    font-size: 0.9em;
}

.stats-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.stat-card {
    background: linear-gradient(135deg, #fb8500, #ffb703);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-card .value {
    font-size: 2em;
    font-weight: bold;
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}