body {
   background-color: darkgreen;
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 0;
}

/* -------------- Main Menu -------------- */
.main-menu {
   position: fixed;
   top: 0;
   width: 100%;
   background-color: #333;
   color: white;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 20px;
   box-sizing: border-box;
   box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
   z-index: 1000;
}

.main-menu ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

.main-menu li {
   float: left;
   position: relative;
}

.main-menu li a {
   display: block;
   color: white;
   text-align: center;
   padding: 10px 12px;
   text-decoration: none;
}

.main-menu li a:hover {
   background-color: #111;
}

.content {
   padding-top: 60px;
   margin: 20px;
}

.menu-left,
.menu-right {
   list-style-type: none;
   margin: 0;
   padding: 0;
   display: flex;
   align-items: center;
}

.menu-left li,
.menu-right li {
   margin-right: 20px;
}

.menu-left li a {
   color: white;
   text-align: center;
   padding: 10px 16px;
   text-decoration: none;
}

.menu-left li a:hover {
   background-color: #111;
}

.sub-menu {
   display: none;
   width: 150px;
   position: absolute;
   background-color: forestgreen;
}

.sub-menu a {
   color: white;
   padding: 12px 16px;
   text-decoration: none;
   display: block;
}

.sub-menu a:hover {
   background-color: #111;
   cursor: pointer;
}

.main-menu li:hover .sub-menu {
   display: block;
}

@media (hover: none) and (pointer: coarse) {
   .sub-menu {
      display: none;
   }
}

/* -------------- Context Menu -------------- */
.context-menu {
   font-family: sans-serif;
   font-weight: bold;
   display: none;
   position: absolute;
   background-color: #7fff00;
   border: 1px solid #202020;
   box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
   border-radius: 10px;
}

.context-menu ul {
   list-style-type: none;
   margin: 0;
   padding: 0px 0;
}

.context-menu li {
   padding: 8px 10px;
   cursor: pointer;
   border-radius: 10px;
}

.context-menu li:hover {
   background-color: #7fff00;
}

.status-label {
   color: white;
   text-align: center;
   padding: 10px 16px;
}

/* -------------- Slides Modal -------------- */
.modal {
   display: none;
   position: fixed;
   z-index: 1;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(0, 0, 0, 0.5);
   justify-content: center;
   align-items: center;
}

.modal-content {
   background-color: #202020;
   color: white;
   margin: auto;
   padding: 20px;
   border: 1px solid #888;
   border-radius: 10px;
   width: 80%;
   max-width: 500px;
   position: relative;
   text-align: center;
}

.close {
   color: #aaa;
   float: right;
   font-size: 28px;
   font-weight: bold;
   cursor: pointer;
}

.close:hover,
.close:focus {
   color: salmon;
   text-decoration: none;
}

#openModalBtn,
.nav-btn {
   display: inline-block;
   margin: 20px;
   padding: 10px 20px;
   font-size: 16px;
   cursor: pointer;
   background-color: #4CAF50;
   color: white;
   border: none;
   border-radius: 5px;
   transition: background-color 0.3s;
}

#openModalBtn:hover,
.nav-btn:hover {
   background-color: #45a049;
}

.slide {
   display: none;
   padding: 10px;
}

.active-slide {
   display: block;
   padding: 10px;
}

/* -------------- Toolbox -------------- */
.tool {
   position: absolute;
   z-index: 1;
   left: 20px;
   top: 60px;
   width: 40px;
   height: 40px;
   border-radius: 5px;
   background-color: forestgreen;
   box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.tool:hover,
.tool:focus {
   color: #000;
   text-decoration: none;
   cursor: pointer;
}