:root {
  --brand-color: #ff8500;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg-light, #f9f9f9);
  color: var(--text-dark, #222);
  transition: background 0.3s, color 0.3s;
  font-size: 1.05em;
  /* padding: 20px; */
}

body.light {
  background: #f4f4f4;
  color: var(--text-dark, #222);
}

body.dark {
  background: #121212;
  color: #fff;
}

/* Navbar */
.navbar {
  background-color: var(--brand-color);
  color: white;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.navbar h1 {
  font-size: 1.2em;
  margin: 0;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #e56f00;
}

/* Toggle Switch */
.toggle-container {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.toggle-container label {
  margin-left: 10px;
  font-size: 0.9em;
  user-select: none;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: 10px;
}

.toggle-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active {
  background: #333;
}

.toggle-switch.active::before {
  transform: translateX(20px);
}
.cancel-btn {
  margin-top: 8px;
  padding: 5px 10px;
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cancel-btn:hover {
  background-color: #c9302c;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--brand-color);
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 6px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}
