/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
}
.sidebar {
  width: 250px;
  background-color: #2c2c2c;
  color: #ccc;
  height: 100vh;
  padding: 20px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.sidebar ul li:hover {
  background-color: #3d3d3d;
}
.sidebar ul li i {
  margin-right: 10px;
}
.content {
  flex: 1;
  padding: 20px;
  position: relative;
}
.section {
  display: none;
}
.section.active {
  display: block;
}
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #aaa;
}
.modal-close:hover {
  color: #000;
}
.modal-content form {
  display: flex;
  flex-direction: column;
}
.modal-content form label {
  margin-top: 10px;
}
.modal-content form select,
.modal-content form input {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.modal-content form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
.modal-content form button:hover {
  background-color: #0056b3;
}
