/* assets/style.css */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
    color: #222;
}

.app-header {
    background-color: #d32f2f;
    padding: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.app-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.page-container {
    padding: 30px;
}

.app-footer {
    text-align: center;
    padding: 10px;
    background-color: #eee;
    font-size: 0.9em;
    color: #555;
    margin-top: 30px;
}

/* Navigation buttons */
#nav-buttons button {
    transition: all 0.3s ease;
}

#nav-buttons button:hover {
    background-color: #b71c1c;
    color: white;
}

/* assets/style.css */

.main-container {
    display: flex;
    flex-direction: row;
    height: 85vh;
    padding: 10px;
}

.main-container > div {
    flex: 1;
}

/* Responsive mode: mobile view */
@media screen and (max-width: 768px) {
    .main-container {
        flex-direction: column;
        height: auto;
    }

    .main-container > div {
        margin-left: 0 !important; /* Pour annuler le marginLeft du deuxième div */
        margin-top: 20px;
    }
}
.right-panel {
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .right-panel {
        margin-left: 0;
    }
}
