/* Core resets for browser consistency */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
	background-image: url('images/fond-fix-VL.jpg');
	background-attachment: fixed; /* Le fond reste fixe lors du défilement */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    background-size: cover; /* Adapte l'image pour couvrir toute la zone */
    background-color: #000000;  /* Optionnel : couleur de secours */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

/* Container for the vertical menu */
.vertical-menu {
    width: 200px;
    background-color: #1e293b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;	/* Le menu reste fixe au même endroit */
}

/* Remove default list bullets and padding */
.vertical-menu ul {
    list-style-type: none;
}

/* Style the individual link elements */
.vertical-menu a {
    display: block;
    color: #cbd5e1;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Change background color on hover */
.vertical-menu a:hover {
    background-color: #334155;
    color: #ffffff;
    padding-left: 26px; /* Smooth slide-right effect */
    color: orange;
    border-bottom: 2px solid gold;
}

/* Highlight style for the current/active page */
.vertical-menu a.active {
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: bold;
}
