* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
}

.toggle-switch {
    display: flex;
    align-items: center;
}

.toggle-switch label {
    margin-right: 10px;
}

.overview {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.overview-item {
    text-align: center;
}

.overview-item h2 {
    font-size: 36px;
    color: #ff7f50;
}

.section {
    margin-bottom: 20px;
}

.section h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.department ul,
.job-role ul {
    list-style: none;
}

.department ul li,
.job-role ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.department ul li span,
.job-role ul li span {
    background-color: #ff7f50;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

canvas {
    margin: 20px 0;
}

.recent-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}