/* STATUS TOGGLE */
.status-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 6px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

/* ENABLED */
.status-toggle.enabled {
  background-color: #58b7a5;
  color: #fff;
}

/* DISABLED */
.status-toggle.disabled {
    background-color: #a5001a;
    color: #ffffff;
}

/* TOGGLE KNOB */
.status-toggle .toggle-knob {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

/* MOVE KNOB */
.status-toggle.enabled .toggle-knob {
  transform: translateX(0);
}

.status-toggle.disabled .toggle-knob {
  transform: translateX(0);
}

/* TEXT */
.status-toggle .toggle-text {
  margin-left: 6px;
}


.backbtn {
    margin-bottom: 10px;
}

.Spassov_container {
    margin-bottom: 30px;
}


.cusmodal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideUp 0.3s ease-out;
    height: 60%;
}

.cusmodal-footer {
    display: flex
;
    justify-content: center;
    gap: 12px;
    padding: 30px 24px;
    border-radius: 0 0 12px 12px;
}








/* Nested Table Styles */
.nested-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.nested-table thead {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.nested-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.nested-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
}

.nested-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
}

/* Category Row (Parent) */
.category-row {
    background-color: #ffffff;
}

.category-row:hover {
    background-color: #f8f9fa;
}

.category-row td {
    font-weight: 500;
}

/* Sub-Category Row (Child) */
.subcategory-row {
    background-color: #fafbfc;
}

.subcategory-row:hover {
    background-color: #f1f3f5;
}

/* Toggle Icon */
.toggle-icon {
    display: inline-block;
    width: 20px;
    font-size: 12px;
    color: #6c757d;
}

/* Action Buttons */
.btn-icon {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-icon:hover {
    transform: scale(1.1);
}

.btn-edit {
    color: #0d6efd;
}

.btn-delete {
    color: #dc3545;
}

/* Search Input Group */
.input-group-text {
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group-text:has(+ .form-control:focus) {
    border-color: #86b7fe;
}

button.btn.btn-danger {
    border-radius: 4px !important;
}

.MUL_remove_button:hover {
    background-color: red;
    color: white;
}

.DahICon{
display: flex !important;
justify-content: center !important;
align-items: center !important;
height: 100% !important;
font-size: 20px !important;
width: 100% !important;
}

.white{
    color: white;
}

.Dashicon{
   
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 37px;

}