    body {
      background-color: #121212;
      color: #e0e0e0;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    a {
      color: #D65050;
      text-decoration: none;
    }
    a:hover {
      color: #f07878;
      text-decoration: underline;
    }
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 250px;
      background-color: #1f1f1f;
      border-right: 2px solid #D65050;
      transition: transform 0.3s ease;
      transform: translateX(0);
      z-index: 1000;
    }
    .sidebar.hidden {
      transform: translateX(-250px);
    }
    .nav-link {
      color: #e0e0e0;
      transition: color 0.3s, background-color 0.3s;
      cursor: pointer;
    }
    .nav-link:hover {
      color: #D65050;
      background-color: rgba(214, 80, 80, 0.1);
    }
    .nav-link.active {
      color: #D65050 !important;
      font-weight: 600;
    }
    .dropdown-container {
      display: none;
      flex-direction: column;
      padding-left: 1rem;
      border-left: 2px solid rgba(214, 80, 80, 0.3);
      margin-top: 0.25rem;
      margin-bottom: 0.5rem;
    }
    .dropdown-container.show {
      display: flex;
    }
    .dropdown-item {
      color: #bcbcbc;
      text-decoration: none;
      padding: 0.25rem 0;
      transition: color 0.3s;
    }
    .dropdown-item:hover {
      color: #D65050;
    }
    .dropdown-toggle::after {
      content: "▸";
      float: right;
      transition: transform 0.3s;
    }
    .dropdown-toggle.open::after {
      transform: rotate(90deg);
    }
    .content {
      margin-left: 250px;
      transition: margin-left 0.3s ease;
      padding: 2rem;
    }
    .content.expanded {
      margin-left: 0;
    }
    .toggle-btn {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 1100;
      background-color: #1f1f1f;
      color: #D65050;
      border: 1px solid #D65050;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
    }
    .toggle-btn:hover {
      background-color: #D65050;
      color: #121212;
    }
    @media (max-width: 768px) {
      .sidebar {
        transform: translateX(-250px);
      }
      .sidebar.active {
        transform: translateX(0);
      }
      .content {
        margin-left: 0;
      }
    }

    /* Active highlight for nav links and dropdown items */
    .nav-link.active, .dropdown-item.active {
      background-color: rgba(214, 80, 80, 0.15);
      color: #D65050 !important;
      font-weight: 600;
      border-left: 4px solid #D65050;
    }
    .dropdown-toggle.open {
      color: #D65050 !important;
      font-weight: 600;
    }
    .dropdown-container.show {
      display: flex;
      flex-direction: column;
    }

    .fade-in {
      opacity: 0;
      animation: fadeIn 2s forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
	
	    /* Dark input styling */
    .dark-input {
      background-color: #1f1f1f;
      color: #e0e0e0;
      border: 2px solid #D65050;
      border-radius: 5px;
    }
    .dark-input:focus, .dark-input:hover {
      border-color: #f07878;
      outline: none;
    }
    /* Modal adjustments for dark theme */
    .modal-content {
      background-color: #1f1f1f;
      color: #e0e0e0;
      border: 2px solid #D65050;
    }
    .modal-header {
      border-bottom: 2px solid #D65050;
    }
    .modal-footer {
      border-top: 2px solid #D65050;
    }
    .btn-outline-danger {
      border-color: #D65050;
      color: #D65050;
    }
    .btn-outline-danger:hover {
      background-color: #D65050;
      color: #121212;
    }

/* Force placeholder text to use the red color */
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #D65050 !important;
  opacity: 1 !important;
}

/* Vendor prefixes for full browser coverage */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #D65050 !important;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #D65050 !important;
  opacity: 1 !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #D65050 !important;
  opacity: 1 !important;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #D65050 !important;
}

/* ===== Compact Dark + Red Checklist ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  display: flex;
  align-items: center;
  background-color: #1f1f1f;
  border: 2px solid #D65050;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.checklist li:hover {
  border-color: #f07878;
  background-color: rgba(214, 80, 80, 0.08);
}

/* Checkbox customization (no checkmark, solid red when checked) */
.checklist input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D65050;
  border-radius: 3px;
  background-color: #121212;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.checklist input[type="checkbox"]:hover {
  border-color: #f07878;
}

.checklist input[type="checkbox"]:checked {
  background-color: #D65050;
  border-color: #D65050;
}

/* Label styling */
.checklist label {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.3;
  cursor: pointer;
  user-select: none;
}

.checklist label code {
  color: #D65050;
  background-color: rgba(214, 80, 80, 0.15);
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* Checked text slightly dimmed */
.checklist input[type="checkbox"]:checked + label {
  color: #a0a0a0;
  text-decoration: line-through;
  transition: color 0.3s ease;
}

/* Compact layout for mobile */
@media (max-width: 600px) {
  .checklist li {
    flex-direction: column;
    align-items: flex-start;
  }
  .checklist input[type="checkbox"] {
    margin-bottom: 5px;
  }
}

/* ===== Dark Card Styles for Forms ===== */
.card {
  background-color: #1f1f1f; /* Dark card background */
  border: 2px solid #D65050;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

.card-header {
  background-color: #141414; /* Slightly darker than card */
  color: #D65050;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid #D65050;
  padding: 0.75rem 1rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.card-body {
  padding: 1rem;
}

/* Form Labels inside cards */
.card-body .form-label {
  color: #ccc;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* Inputs and textareas inside cards */
.card-body .dark-input {
  background-color: #101010;
  color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0.5rem;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-body .dark-input:focus {
  border-color: #D65050;
  box-shadow: 0 0 5px #D65050;
  outline: none;
}

/* Select fields inside cards */
.card-body select.dark-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Textarea placeholder */
.card-body .dark-input::placeholder {
  color: #D65050;
  opacity: 1;
}

/* Buttons inside cards or related to form */
.card-body .btn-outline-danger {
  border-color: #D65050;
  color: #D65050;
  transition: all 0.3s ease;
}

.card-body .btn-outline-danger:hover {
  background-color: #D65050;
  color: #121212;
}

/* Responsive adjustments for card body */
@media (max-width: 768px) {
  .card-body .row {
    flex-direction: column;
  }
}

