﻿/* Sidebar Styling */
.side-sticky-menu {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.side-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 3px;
    color: #fff !important; /* Forces text to stay white */
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    width: 45px; /* Icon only view */
    overflow: hidden;
    white-space: nowrap;
    border-radius: 8px 0 0 8px;
}

/* Colors similar to the reference site */
.admission { background: #d32f2f; }
.enquiry   { background: #1976d2; }
.brochure  { background: #388e3c; }

/* Expansion on Hover */
.side-item:hover {
    width: 160px;
    margin-left: -115px;
    box-shadow: -4px 4px 10px rgba(0,0,0,0.2);
}

.side-item i {
    min-width: 25px;
    font-size: 20px;
    margin-right: 15px;
}

/* Popup Styling */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 25px;
    width: 350px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.popup-content input, .popup-content select {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
}