
    /* ===== General Container ===== */


.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: center;
  box-sizing: border-box;
}

.col-lg-4, .col-md-6, .col-lg-8 {
  padding: 0 10px;
  box-sizing: border-box;
}

/* ===== Card Styles ===== */
.d-flex.align-items-start {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  flex-wrap: wrap;
}

.icon-box {
  flex-shrink: 0;
  transition: transform 0.7s ease;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ===== Status Badges ===== */
.cc {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.cc span {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ds {
  background-color: #9cccff;
  color: #0d7bf0;
}
.ds:hover {
  background-color: #0d7bf0;
  color: white;
  transform: scale(1.1);
}

.sd {
  background-color: rgb(165, 232, 165);
  color: green;
}
.sd:hover {
  background-color: green;
  color: white;
  transform: scale(1.1);
}

.as {
  background-color: rgb(249, 220, 166);
  color: orange;
}
.as:hover {
  background-color: orange;
  color: white;
  transform: scale(1.1);
}

/* ===== Icon Colors per Card ===== */
.vv .oo { background-color: #0d7bf0; color: white; }
.vv:hover .oo { background-color: #9cccff; color: #0d7bf0; transform: translateX(-5px) scale(1.05); }

.bas .aw { background-color: rgb(95, 77, 207); color: white; }
.bas:hover .aw { background-color: rgb(203,196,246); color: rgb(95,77,207); transform: translateX(-5px) scale(1.05); }

.pas .das { background-color: rgb(207,73,122); color: white; }
.pas:hover .das { background-color: rgb(243,183,205); color: rgb(207,73,122); transform: translateX(-5px) scale(1.05); }

.hah .faf { background-color: lightgreen; color: white; }
.hah:hover .faf { background-color: rgb(190,255,190); color: rgb(38,234,38); transform: translateX(-5px) scale(1.05); }

.qw .wq { background-color: black; color: white; }
.qw:hover .wq { background-color: lightgrey; color: black; transform: translateX(-5px) scale(1.05); }

.sas .asa { background-color: #0d7bf0; color: white; }
.sas:hover .asa { background-color: #6aabf2; color: #007afb; transform: translateX(-5px) scale(1.05); }

/* ===== Sidebar & Form ===== */
.sidebar {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.toggle-group label, .radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  cursor: pointer;
}

.switch {
  position: relative;
  width: 38px;
  height: 20px;
}
.switch input { display: none; }
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #d1d5db;
  border-radius: 20px;
  transition: .3s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 2px; bottom: 2px;
  background: white;
  border-radius: 50%;
  transition: .3s;
}
input:checked + .slider { background: #2563eb; }
input:checked + .slider:before { transform: translateX(18px); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .d-flex.align-items-start { flex-direction: column; }
  .icon-box { margin-bottom: 10px; }
  .cc { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .cc span { padding: 2px 8px; font-size: 11px; }
  .icon-box i { font-size: 1.8rem; width: 40px; height: 40px; }
}

@media (max-width: 576px) {
  .row { flex-direction: column; }
  .d-flex.align-items-start { flex-direction: column; align-items: flex-start; }
  .icon-box { margin-bottom: 8px; }
  .cc span { padding: 2px 6px; font-size: 10px; }
}





