/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Menu */
.navbar {
    background-color: #0073e6;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.navbar li {
    display: inline;
}

.navbar a {
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #005bb5;
}

/* Main Dashboard */
.dashboard {
    text-align: center;
    padding: 50px 20px;
}

.quick-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #005bb5;
}