/* GENERAL STYLES */
body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #000;
    margin: 0;
    text-align: center;
}

/* HEADER */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 10px 20px;
    border-bottom: 2px solid #ccc;
}

#header-left h1 {
    color: purple;
    font-size: 24px;
    margin: 0;
}

#header-center {
    text-align: center;
}

.location {
    font-size: 18px;
    font-weight: bold;
}

.sub-locations {
    font-size: 12px;
    color: gray;
}

/* MAIN CONTAINER */
#container {
    display: flex;
    width: 85%;
    margin: 20px auto;
    align-items: flex-start;
}

/* SIDEBAR */
#sidebar {
    width: 20%;
    padding: 10px;
    text-align: left;
    border-right: 2px solid #ccc;
    background: #fff;
    flex-shrink: 0;
}

/* IMAGE CONTAINER */
#image-container {
    flex-grow: 1; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 10px;
}

#image-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: box-shadow 0.3s ease-in-out;
}

#image-container img:hover {
    box-shadow: 0 0 705px purple;
}
