body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #fff;
}

header {
    padding: 1rem;
    background-color: #282a36;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.widget {
    background-color: #2f313e;
    border-radius: 8px;
    padding: 1rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.widget h3 {
    margin-top: 0;
}

.widget-content {
    flex-grow: 1;
    margin-top: 0.5rem;
}

