/* style.css */

/* Base Layout */
body {
  overflow-x: hidden;
  background-color: #f8f9fa;
  padding-top: 1.5rem;
}

.sidebar {
  height: 100vh;
  overflow-y: auto;
}

.sidebar a {
  font-size: 1.1rem;
}

/* Placeholder Card */
.card-placeholder {
  min-height: 300px;
  background-color: #fff3f3;
  border: 2px dashed #dc3545;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  color: #dc3545;
  font-weight: 500;
}

/* Headings and Accent Colors */
.text-danger {
  color: #dc3545 !important;
}

.accordion-button {
  transition: all 0.3s ease;
}

/* Smooth Accordion */
.accordion-collapse {
  transition: height 0.3s ease;
}

/* Section Active Link */
a.bg-danger {
  background-color: #dc3545 !important;
  color: #fff !important;
}

