body {
  background-color: #f8f9fa;
}
.add-custom-inline {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px dashed #2563eb;
  color: #2563eb;
  font-size: 14px;
  cursor: pointer;
}
.service-item.custom-service.editing {
  background: #fff7ed; /* slightly different highlight */
  border-color: #f59e0b; /* orange border for edit mode */
}

.service-item.custom-service input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
}

.add-custom-inline:hover {
  background: #e0e7ff;
}
.service-item.custom-service {
  border-style: dashed;
  background: #f8fafc;
}

.service-item.custom-service .service-name::after {
  content: " (Custom)";
  font-size: 12px;
  color: #6b7280;
}

/* Header */
.services-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.services-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Search */
.service-search {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.service-search:focus {
  outline: none;
  border-color: #2563eb;
}

/* Selected count */
.selected-count {
  font-size: 13px;
  color: #374151;
  background: #f3f4f6;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

/* Tile */
.service-item {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.4;
}
.add-custom-service {
  border: 2px dashed #c7d2fe;
  background: #f8fafc;
  color: #2563eb;
  font-weight: 500;
}

.add-custom-service:hover {
  background: #eef2ff;
}

/* Hover */
.service-item:hover {
  background: #f8fbff;
  border-color: #2563eb;
}

/* Selected */
.service-item.selected {
  background: #eff6ff;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,.25);
}

/* Check */
.check-icon {
  color: #2563eb;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.15s ease;
}

.service-item.selected .check-icon {
  opacity: 1;
  transform: scale(1);
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

    
.select2-container--default .select2-selection--single {
    
    border: none !important;
    
}
.stat-card {
      border-radius: 0.75rem;
      padding: 1.5rem;
      background-color: #fff;
      box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
      transition: 0.3s;
    }
    .stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    }
    .stat-icon {
      font-size: 1.5rem;
      margin-right: 1rem;
    }
    .table thead {
      background-color: #f1f1f1;
    }
    .recent-table-container {
      background: #fff;
      padding: 1.5rem;
      border-radius: 0.75rem;
      box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    }
.sidebar {
  background-color: white;
  height: 100vh;
  border-right: 1px solid #ddd;
  padding: 20px;
}

.nav-link.active {
  background-color: #e9ecef;
  font-weight: bold;
  border-radius: 8px;
}
.nav-link
{
    display: flex;
    /*justify-content: space-between;*/
    align-items: flex-start;
    gap: 8px !important;
    color: #4B5675 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 100% !important;
    border-radius: 8px !important;
    padding: 8px 10px !important;
}
.dropdown-menu {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.table-responsive {
  overflow: visible !important;
}

.dropdown-item {
  font-size: 14px;
  color: #6c757d; /* Muted text */
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000;
}
.team-card-body.selected {
    border: 2px solid #6610f2 !important;
  }

  .checkmark-icon {
    z-index: 10;
  }

  .team-card {
    transition: all 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-2px);
  }

.table td img {
  max-width: 50px;
}
.listing-table {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
}
 .service-card-body.selected {
    border: 2px solid #6610f2 !important;
  }

  .checkmark-icon {
    z-index: 10;
  }

  .service-card {
    transition: all 0.3s;
  }

  .service-card:hover {
    transform: translateY(-2px);
  }
