body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

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

h1 {
    text-align: center;
    color: #333;
}

.department {
    margin-bottom: 30px;
}

.department h2 {
    color: #555;
}

.suggestion {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #e7f3ff;
    border-radius: 8px;
    position: relative;
}

.suggestion img {
    border-radius: 50%;
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.suggestion .info {
    flex-grow: 1;
}

.suggestion .info p {
    margin: 0;
    color: #333;
}

.suggestion .info .date {
    color: #888;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.suggestion .info .date img {
    margin-left: 5px;
    width: 16px;
    height: 16px;
}

.suggestion .info .date .tag {
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8em;
    margin-left: 5px;
}

.suggestion .info .days-ago {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #007bff;
    font-size: 0.85em;
}
