/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabeçalho */
header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border-radius: 5px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Controles */
.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.city-selection, .options {
    flex: 1;
    min-width: 300px;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

select, input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

.btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Mapa */
#map {
    height: 500px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Painel de informações */
.info-panel {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-panel h3 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
    color: #2c3e50;
}

#route-info, #venues-list {
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .controls {
        flex-direction: column;
    }
    
    .city-selection, .options {
        width: 100%;
    }
    
    #map {
        height: 400px;
    }
}

/* Marcadores personalizados */
.venue-marker {
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
    text-align: center;
    color: white;
    font-weight: bold;
}

.city-marker {
    background-color: #3498db;
    border-radius: 50%;
    border: 2px solid white;
    text-align: center;
    color: white;
    font-weight: bold;
}

/* Popup personalizado */
.leaflet-popup-content-wrapper {
    border-radius: 5px;
    padding: 5px;
}

.venue-popup {
    padding: 5px;
}

.venue-popup h4 {
    margin-bottom: 5px;
    color: #e74c3c;
}

.venue-popup p {
    margin-bottom: 3px;
}

/* Controle de raio */
#radius-value {
    display: inline-block;
    width: 60px;
    text-align: right;
}
