.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    padding: 20px;
}

.header {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 300px; /* Adjust as needed */
}

.login-links {
    display: flex;
    gap: 10px;
}

.updates-section {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
}

.categories-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.category {
    flex: 1 1 calc(25% - 20px); /* Flexible items, 4 per row */
    min-width: 200px;
}

.category h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.category ul {
    list-style-type: none;
    padding: 0;
}

.category ul li {
    margin: 5px 0;
}

