.csr-doctors-dropdowns {
  max-width: 900px;
  margin: 2rem auto;
  font-family: system-ui, sans-serif;
}

.csr-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.csr-filters select {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #0f559d;  /* blue border */
  font-size: 15px;
  background: #fff;
  color: #0f559d;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none; /* remove default arrow */
  
  /* FIXED SVG (encoded) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230f559d' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Hover */
.csr-filters select:hover {
  border-color: #b61e4f;
  color: #b61e4f;
}

/* Focus */
.csr-filters select:focus {
  outline: none;
  border-color: #b61e4f;
  box-shadow: 0 0 6px rgba(182, 30, 79, 0.4);
}


/* Table container */
.csr-doc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border-radius: 10px;
  overflow: hidden;
}

.csr-doc-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 14px;
}

.csr-doc-table tr:last-child td { border-bottom: none; }

.icon-cell {
  width: 50px;
  text-align: center;
  font-size: 20px;
}

/* DataTable */
#csr-doc-table {
  width: 100% !important;
  border-radius: 12px;
  overflow: hidden;
}

#csr-doc-table thead th {
  background: #b61e4f;  /* red header */
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
}

/* alternate rows */
#csr-doc-table tbody tr:nth-child(odd) {
  background: #fff;
  color: #000;
}
#csr-doc-table tbody tr:nth-child(even) {
  background: #0f559d;  /* blue row */
  color: #fff;
}

#csr-doc-table tbody td {
  padding: 10px;
  font-size: 14px;
}

/* Search box */
/* Search box wrapper */
.dataTables_wrapper .dataTables_filter {
  float: none !important;       /* remove right float */
  text-align: left !important;  /* align left */
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Label takes full width on small screens */
.dataTables_wrapper .dataTables_filter label {
  font-weight: 600;
  color: #333;
  text-align: left;
  flex: 1 1 100%;  /* full width by default (mobile) */
}

/* Search input full width */
.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  flex: 1 1 100%; /* full width on mobile */
  max-width: 100%;
}
.csr-title{
  color: #0f559d; 
}
@media (min-width: 768px) {
  .dataTables_wrapper .dataTables_filter {
    flex-wrap: nowrap;
    align-items: center;
  }
  .dataTables_wrapper .dataTables_filter label {
    flex: 0 0 auto;   /* shrink to text */
    margin-right: 8px;
  }
  .dataTables_wrapper .dataTables_filter input {
    flex: 0 0 250px;  /* fixed width on desktop */
  }
}