body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* .container {
    width: 80%;
    margin: auto;
    overflow: hidden;
} */

.container {
    display: flex;
}

header {
    background: #50b3a2;
    color: white;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

footer {
    padding: 10px;
    margin-top: 20px;
    background: #50b3a2;
    color: white;
    text-align: center;
}

h2, h3 {
    padding: 10px 0;
    margin: 10px 0;
}

p {
    margin: 10px 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #ccc;
    margin-bottom: 5px;
    padding: 10px;
    font-size: 16px;
}

.sidebar {
    flex: 0.8;
    background-color: #f0f0f0;
    padding: 20px;
}
.content {
    flex: 2.2;
    padding: 20px;
}

.profile-photo {
    width: 100px; /* Adjust the size as needed */
    height: 100px;
    border-radius: 50%; /* Circular photo */
    margin-bottom: 20px;
}

.symbols-section {
    margin: 20px 0;
}

.section-title {
    font-weight: bold;
    color: #333;
}

.symbol {
    background-color: #f0f0f0;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.maintenance-notice {
    background-color: #ffcc00; 
    color: black; 
    text-align: center; 
    padding: 10px 0; /* fill up and down */
    font-size: 1.2em; /* larger font size */
    border-bottom: 2px solid #e8491d; /* bottom border */
}
