body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f8fc;
    margin: 0;
    color: #222;
}
.dashboard-header {
    background: #1565c0;
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-space {
    width: 120px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
}
.dashboard-title {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 1rem;
}
.dashboard-nav {
    background: #1976d2;
    color: #fff;
    padding: 1rem 1rem;
    min-height: 48px;
}
.dashboard-main {
    padding: 2rem;
}
.dashboard-widgets {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.dashboard-footer {
    background: #1565c0;
    color: #fff;
    text-align: center;
    padding: 2px;
    position: fixed;
    width: 100%;
    bottom: 0;
}
