/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stile generale */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Contenitore principale */
.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header */
.dashboard-header {
    background-color: #0044cc;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header .logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Layout principale */
.dashboard-main {
    display: flex;
    flex: 1;
    padding: 20px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #333;
    color: white;
    padding: 20px;
    height: 100%;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.sidebar ul li a:hover {
    text-decoration: underline;
}

/* Contenuto principale */
.content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #0044cc;
}

.card p {
    font-size: 16px;
}

.card ul {
    list-style-type: none;
}

.card ul li {
    margin-bottom: 5px;
}
