.btn-delete {
    background-color: #dc3545;
}

.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.btn-info {
    background-color: #17a2b8;
}

/* Status Label */
.status {
    padding: 3px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
}
.status-active {
    background-color: #28a745;
}
.status-inactive {
    background-color: #6c757d;
}

/* Admin Form */
.admin-form {
    /* ...existing styles... */
}
.admin-form small {
    color: #666;
    font-size: 0.9em;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: middle;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #28a745;
}

input:focus + .slider {
  box-shadow: 0 0 1px #28a745;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-label {
    margin-left: 10px;
    vertical-align: middle;
}

/* Filter Form */
.filter-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: center;
}
.filter-grid input, .filter-grid select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.filter-grid .btn {
    padding: 10px;
    font-size: 16px;
    box-shadow: none;
    margin: 0;
}
.filter-grid .btn:active {
    transform: translateY(2px);
}


/* Report Details */
.report-header {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.report-header p {
    margin: 0 0 10px 0;
}
.details-table td, .details-table th {
    vertical-align: top;
}

/* Inspector Form */
.inspection-form .form-section {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 25px;
}

.inspection-form .form-section h3 {
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.checklist-item-card {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    margin-bottom: 15px;
}

.checklist-item-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

.checklist-item-card .options {
    display: flex;
    gap: 20px;
}

.checklist-item-card .options label {
    font-weight: normal;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 20px;
    width: 100%;
}

/* Alert Messages */
.alert {
    padding: 15px;
    /* ...existing styles... */
}