body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}

.dashboard-container {
    max-width: 900px;
    margin: 60px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.dashboard-container h2 {
    color: #2c5364;
    margin-bottom: 20px;
}

.dashboard-links {
    list-style: none;
    padding: 0;
}

.dashboard-links li {
    margin: 10px 0;
}

.dashboard-links a {
    text-decoration: none;
    color: #00b89c;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dashboard-links a:hover {
    color: #007e6a;
}
