/* Ekibimiz CSS */
.avatar-placeholder {
  width: 60px;
  height: 60px;
  font-weight: bold;
}

@media (max-width: 767.98px) {

  .table th,
  .table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Custom colors for links */
.ekibimiz a {
  color: #0d6efd;
}

.ekibimiz a:hover {
  color: #0a58ca;
}

/* Card hover effect */
.card-e {
  transition: all 0.3s ease;
}

.card-e:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Table row hover effect */
.table-hover tbody tr:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

/* Custom styling for search input */
.search-container .input-group {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 0.375rem;
  overflow: hidden;
}

.search-container .input-group:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.search-container .form-control:focus {
  box-shadow: none;
}