/* style.css */
body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fdfdfd;
}

#container {
    display: flex;
    min-height: 100vh;
}

#sidebar {
    width: 280px;
    background-color: #f0f0f0;
    padding: 20px;
    flex-shrink: 0;
    text-align: center;
    border-right: 1px solid #ddd;
}

.profile-pic {
    width: 160px;
    border-radius: 50%;
    margin-bottom: 15px;
}

#sidebar h2 {
    font-size: 22px;
    margin: 10px 0 5px;
}

.nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav a {
    text-decoration: none;
    color: #333;
    padding: 8px;
    border-radius: 4px;
}

.nav a.active,
.nav a:hover {
    background-color: #ddd;
}

#main-content {
    flex: 1;
    padding: 40px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #003366;
    margin-bottom: 10px;
}

ul {
    padding-left: 20px;
}

.see-all {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #0066cc;
}

.see-all:hover {
    text-decoration: underline;
}

.news-scroll-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px;
    background-color: #fff;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
}

.news-scroll {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-scroll-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.news-scroll-item:last-child {
    border-bottom: none;
}

.news-scroll-item h4 {
    font-size: 1rem;
    color: #003366;
    margin: 0 0 4px 0;
}

.news-scroll-item .news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 6px;
}
