body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
}

/* NAVBAR */
.navbar {
    background: #1e293b;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* SEARCH */
.search-box {
    background: white;
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.search-box input {
    padding: 10px;
    width: 200px;
}

.search-box button {
    padding: 10px 20px;
    background: #2563eb;
    color: white;
    border: none;
}

/* LISTING */
.section-title {
    margin: 20px;
}

.school-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.school-card {
    background: white;
    padding: 15px;
    border-radius: 6px;
}

.details-btn {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
}

/* SCHOOL DETAIL */
.school-hero {
    background: #2563eb;
    color: white;
    padding: 30px;
}

.tabs {
    display: flex;
    background: white;
    padding: 10px;
    gap: 10px;
    border-bottom: 1px solid #ddd;
}

.tab {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.tab-content {
    background: white;
    padding: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1e293b;
    color: white;
}
