/* Schools List Styles */
.schools-container {
    max-width: 800px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.distance-category {
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}

.category-title {
    background-color: #f5f5f5;
    padding: 10px;
    margin: -15px -15px 15px -15px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    color: #333;
}

.school-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.school-item {
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-item:last-child {
    border-bottom: none;
}

.school-name {
   // font-weight: bold;
    color: #2c3e50;
}

.school-address {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-top: 2px;
}

.school-distance {
    background-color: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    min-width: 60px;
    text-align: center;
}

.distance-0-1km .school-distance { background-color: #27ae60; }
.distance-1-2km .school-distance { background-color: #f39c12; }

.no-schools {
    text-align: center;
    color: #95a5a6;
    font-style: italic;
    padding: 20px;
}

.loading-schools {
    text-align: center;
    color: #3498db;
    padding: 20px;
}