/* 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;
}

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

#sidebar input {
    width: 90%;
    padding: 5px;
    margin-bottom: 10px;
}

/* Calendar Styles */
#calendar table {
    width: 100%;
    border-collapse: collapse;
}

#calendar td {
    width: 14%;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
}

/* Help Links */
#help-links p {
    font-size: 12px;
    margin: 5px 0;
}
#main {
    display: flex;  
    padding-left: 17px;
    text-align: left;
    flex-direction: row; 
    align-items: flex-start; 
    justify-content: space-between;
    gap: 43px; 
}


#content-wrapper {
    flex: 2; 
    max-width: 70%;
}


#gif-container {
    flex: 2; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gif-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px; 
}

