/* globale.css */

/* Impostazioni generali */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f7fa;
}

/* Header */
header {
    background-color: #2b5876; /* Grigio azzurro scuro */
    color: #ffffff;
    padding: 1px;
}

header h1 {
    background-color: #4c768d;
    margin: 0;
    font-size: 1.8em;
    box-shadow: 0 2px 5px #333;
    padding: 10px;
}

nav#main-menu {
    margin-top: 10px;
}

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

.menu-item .menu-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-item .menu-link:hover {
    background-color: #4c768d;
    box-shadow: 0 2px 5px #333;
}

.menu-item .menu-link:active {
    background-color: #1b374b;
    color: #aaa;
    box-shadow: 0 -3px -7px #555;
}

/* Main Content */
main {
    display: flex;
    padding: 20px;
    gap: 20px;
}

/* Sidebar */
#sidebar {
    width: 25%;
    background-color: #dce3e9; /* Azzurro chiaro */
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0.5, 0.5);
}

#sidebar h2 {
    color: #2b5876;
    font-size: 1.2em;
}

.lesson-menu {
    list-style: none;
    padding: 0;
}

.lesson-menu-item {
    margin-bottom: 10px;
}

.lesson-button {
    width: 100%;
    background-color: #4c768d;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lesson-button:hover {
    background-color: #2b5876;
    box-shadow: 0 2px 5px #333;
}

.lesson-button:active {
    background-color: #1b374b;
    color: #aaa;
    box-shadow: 0 -3px -7px #555;
}

/* Lesson Content */
#lesson-content {
    width: 75%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0.5, 0.5);
}

#lesson-content h1 {
    color: #2b5876;
}

#lesson-content h2 {
    color: #2b5876;
}

/* Footer */
footer {
    background-color: #2b5876;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
