/* GENERAL */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* HEADER */
.header-bar {
    background-color: #8C1D40;
    color: white;
    padding: 3px 10px;
    min-height: 65px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-bar h3 {
    font-size: 2rem;
    margin: 0;
}

.gov-logo {
    height: 45px;
    border-radius: 8px;
}

.unpa-logo {
    height: 85px;
    border-radius: 8px;
}

/* CONTENT BOX */
.content {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* TITLES */
h2 {
    color: #8C1D40;
    border-left: 6px solid #8C1D40;
    padding-left: 10px;
    margin-top: 30px;
}

/* PANELS */
.map-container {
    width: 100%;
    height: calc(100vh - 95px);
    border: none;
}

.info-panel-left {
    background: #ffffffeb;
    position: absolute;
    top: 100px;
    left: 20px;
    padding: 18px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 10px #0004;
}

.info-panel-left h4,
.details-panel-right h4 {
    color: #8C1D40;
    font-weight: bold;
}

/* UNIVERSITY LIST */
.university-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 15px;
}

.university-item:hover {
    background-color: #f0e6e9;
}

/* RIGHT PANEL */
.details-panel-right {
    background: #ffffffeb;
    position: absolute;
    top: 100px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    width: 380px;
    box-shadow: 0 0 10px #0004;
    display: none;
}

.univ-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* PROGRAMS LIST */
.program-list {
    margin-top: 15px;
}

.program-list li {
    margin-bottom: 6px;
}

/* BUTTONS */
.btn-primary {
    background-color: #8C1D40;
    border: none;
}

.btn-primary:hover {
    background-color: #6e162f;
}
