/* Styles for the Merchant Status Restrictions UI */

.status-checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.status-group {
  min-width: 200px;
  flex: 1;
  margin-bottom: 10px;
}

.status-group-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
}

.status-group .custom-control {
  margin-bottom: 8px;
}

.custom-control-label {
  font-size: 13px;
}

.selected-statuses {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #e9ecef;
}

.selected-statuses .badge {
  font-size: 12px;
  padding: 5px 8px;
}

.selected-statuses .badge .fe-x {
  font-size: 10px;
  position: relative;
  top: -1px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .status-checkbox-container {
    flex-direction: column;
  }
  
  .status-group {
    min-width: 100%;
  }
} 