@charset "UTF-8";
.accreditation-directory-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px !important;
  box-sizing: border-box;
}

.accreditation-directory {
  background: transparent;
  overflow: visible;
  cursor: default;
}
.accreditation-directory h1,
.accreditation-directory h2 {
  text-align: center;
  color: #00ccb7;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 2.5rem;
}

.fusion-column-wrapper {
  pointer-events: none !important;
}
.fusion-column-wrapper .accreditation-directory {
  pointer-events: auto !important;
  z-index: 99999 !important;
}

.fusion-content-boxes .content-box-wrapper,
.fusion-content-boxes .content-container {
  padding: 0 !important;
  margin: 0 !important;
}

.fusion-content-boxes .col.content-box-wrapper {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.fusion-builder-column .fusion-column-wrapper,
.fusion-layout-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.fusion-builder-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#accreditation-directory-app.accreditation-directory-container,
.accreditation-directory-container .accreditation-directory-container {
  padding: 0 !important;
  margin: 0 !important;
}

.loading,
.error,
.no-data {
  padding: 30px 20px;
  text-align: center;
  font-size: 16px;
}

.loading {
  color: #666;
  font-style: italic;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error {
  color: #d32f2f;
  background-color: #fff5f5;
  border: 1px solid #ffcdd2;
}

.no-data {
  color: #666;
  border: 1px solid #e9ecef;
}

.directory-controls {
  background: transparent;
  padding: 15px 0;
  margin-bottom: 25px;
}

.filter-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.ade-search {
  margin-bottom: 20px;
}
.ade-search .search-input-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.ade-search .search-input {
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
  border: 1px solid #ced4da;
  outline: none;
  transition: all 0.3s ease;
}
.ade-search .search-input:focus {
  border-color: #00ccb7;
}
.ade-search .search-input::-moz-placeholder {
  color: #adb5bd;
  font-style: italic;
}
.ade-search .search-input::placeholder {
  color: #adb5bd;
  font-style: italic;
}
.ade-search .clear-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
  transition: color 0.2s ease;
}
.ade-search .clear-search:hover {
  color: #dc3545;
}

.ade-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.filter-group {
  min-width: 180px;
}
.filter-group:has(.modality-checkboxes) {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-group:has(.modality-checkboxes) .filter-label {
  margin-bottom: 0;
  white-space: nowrap;
}

.state-select {
  width: 100%;
  padding: 6px 30px 6px 12px;
  border: 1px solid #ced4da;
  background-color: white;
  font-size: 15px;
  color: #495057;
  cursor: pointer;
  transition: border-color 0.2s ease;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="5" viewBox="0 0 4 5"><path fill="%23666" d="m0 0 2 2 2-2z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px top 20px;
  background-size: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 50px;
  font-family: inherit;
  position: relative;
  z-index: 10;
  -webkit-overflow-scrolling: touch;
}
.state-select option {
  font-family: inherit;
  font-size: inherit;
}
.state-select:focus {
  outline: none;
  border-color: #00ccb7;
  position: relative;
  z-index: 11;
}

.modality-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #495057;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.2s ease;
}
.checkbox-label:hover {
  color: #212529;
}

.modality-checkbox {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
  position: relative;
  transition: all 0.2s ease;
}
.modality-checkbox:checked {
  background-color: #00ccb7;
  border-color: #00ccb7;
}
.modality-checkbox:checked::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.modality-checkbox:hover:not(:checked) {
  border-color: #00ccb7;
}
.modality-checkbox:hover:checked {
  background-color: #00a693;
  border-color: #00a693;
}

.clear-filters {
  background: #00ccb7;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  height: -moz-fit-content;
  height: fit-content;
  width: 108px !important;
}
.clear-filters:hover:not(:disabled) {
  background: #00a693;
  transform: translateY(-1px);
}
.clear-filters:disabled {
  background: #6c757d;
  color: white;
  cursor: default;
  opacity: 0.6;
  transform: none;
}
.clear-filters:disabled:hover {
  background: #6c757d;
  transform: none;
}

.table-container {
  position: relative;
}

.directory-table {
  border: 1px solid #e9ecef;
  background: white;
}

.ade-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: white;
}

.table-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.table-header th {
  background: white;
  color: #495057;
  font-weight: 600;
  padding: 15px 12px;
  text-align: center;
  border-bottom: 2px solid #00ccb7 !important;
  border-left: none;
  border-right: none;
  border-top: none;
  vertical-align: middle;
}
.table-header th.sortable {
  cursor: pointer;
}
.table-header th.sortable:hover {
  background: #f8f9fa;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.header-content .header-text {
  flex: 1;
  text-align: center;
}

.sort-indicators {
  display: flex;
  flex-direction: column;
}

.sort-arrow {
  font-size: 10px;
  color: #adb5bd;
  line-height: 1;
  transition: color 0.2s ease;
}
.sort-arrow.active {
  color: #00ccb7;
}

.sort-up {
  margin-bottom: 1px;
}

.table-body .ade-row {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}
.table-body .ade-row:hover {
  background: #f8f9fa;
}
.table-body .ade-row:last-child {
  border-bottom: none;
}
.table-body .ade-row td {
  padding: 15px 12px;
  vertical-align: middle;
  border-right: 1px solid #f1f3f4;
}
.table-body .ade-row td:last-child {
  border-right: none;
}

.dates-cell {
  font-weight: 500;
  color: #495057;
  min-width: 110px;
  text-align: center;
}

.facility-cell {
  font-weight: 600;
  color: #212529;
  min-width: 200px;
}

.address-cell {
  color: #6c757d;
  min-width: 250px;
  line-height: 1.4;
}

.ct-cell,
.mri-cell,
.pet-cell,
.spect-cell {
  text-align: center;
  min-width: 80px;
}

.modality-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modality-check {
  color: #00ccb7;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.subspecialty-text {
  font-size: 12px;
  color: #6c757d;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
  font-style: italic;
}

.pagination {
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 15px;
  margin: 15px 0 10px 0;
  padding: 0;
  text-align: center;
  clear: both;
}
.pagination button {
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  color: #495057;
  width: 90px;
}
.pagination button:hover:not(:disabled) {
  background-color: #f8f9fa;
  border-color: #00ccb7;
  color: #00ccb7;
}
.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination span {
  color: #495057;
  font-weight: 500;
  margin: 0 10px;
}

.directory-summary {
  padding: 10px 0;
  background: transparent;
  color: #6c757d;
  font-size: 14px;
  text-align: center;
  border: none;
  margin: 0;
}

.ade-table-mobile-view {
  width: 100%;
}

.ade-table-mobile {
  width: 100%;
  border-collapse: collapse;
  background: white;
  table-layout: fixed;
}

.ade-table-mobile-thead .ade-table-mobile-header-cell {
  background: white;
  color: #495057;
  font-weight: 600;
  padding: 0;
  text-align: left;
  border-bottom: 2px solid #00ccb7;
  border-left: none;
  border-right: none;
  border-top: none;
  vertical-align: middle;
  width: 100%;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell::before, .ade-table-mobile-thead .ade-table-mobile-header-cell::after {
  display: none !important;
  content: none !important;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell.ade-directory-header {
  position: relative;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell.ade-directory-header::before, .ade-table-mobile-thead .ade-table-mobile-header-cell.ade-directory-header::after {
  display: none !important;
  content: none !important;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 20px;
  gap: 20px;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #495057;
  font-weight: 600;
  flex-shrink: 0;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content h3::before, .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content h3::after {
  display: none !important;
  content: none !important;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content .ade-table-sort-dropdown {
  flex-shrink: 0;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content .ade-table-sort-dropdown .ade-table-sort-select {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
  color: #495057;
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-width: 200px;
  max-width: 250px;
}
.ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content .ade-table-sort-dropdown .ade-table-sort-select:focus {
  outline: none;
  border-color: #00ccb7;
}

.ade-table-no-results-mobile {
  text-align: left;
  padding: 40px 20px;
  color: #6c757d;
  font-style: italic;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #f8f9fa;
}

.ade-table-mobile-tfoot .ade-table-no-results-mobile {
  border: none;
}

.ade-row-mobile-tr {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease;
}
.ade-row-mobile-tr:hover {
  background: #f8f9fa;
}
.ade-row-mobile-tr:last-child {
  border-bottom: none;
}
.ade-row-mobile-tr .ade-row-mobile-cell {
  padding: 20px 15px 30px 15px;
  vertical-align: top;
  text-align: left;
  width: 100%;
  word-wrap: break-word;
  box-sizing: border-box;
}
.ade-row-mobile-tr .facility-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}
.ade-row-mobile-tr .address {
  color: #6c757d;
  line-height: 1.4;
  margin-bottom: 8px;
  font-size: 14px;
}
.ade-row-mobile-tr .expiration-date {
  color: #495057;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 14px;
}
.ade-row-mobile-tr .modalities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ade-row-mobile-tr .modality-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ade-row-mobile-tr .modality-item {
  color: #495057;
  font-size: 14px;
  font-weight: 500;
}
.ade-row-mobile-tr .modality-item .modality-check {
  color: #00ccb7;
  font-weight: bold;
  margin-left: 4px;
}
.ade-row-mobile-tr .modality-specialties {
  margin-left: 15px;
  padding-left: 12px;
  border-left: 2px solid #f1f3f4;
}
.ade-row-mobile-tr .specialties-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0;
  cursor: pointer;
  font-weight: 500;
  color: #495057;
  transition: color 0.2s ease;
  font-size: 14px;
  text-align: left;
}
.ade-row-mobile-tr .specialties-toggle:hover {
  color: #00ccb7;
}
.ade-row-mobile-tr .specialties-toggle.active {
  color: #00ccb7;
}
.ade-row-mobile-tr .toggle-arrow {
  font-size: 0.8em;
  transition: transform 0.2s ease;
  margin-left: 6px;
}
.ade-row-mobile-tr .toggle-arrow.rotated {
  transform: rotate(180deg);
}
.ade-row-mobile-tr .specialties-content {
  padding-top: 6px;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.4;
  text-align: left;
}

.ade-row-mobile-tr::before, .ade-row-mobile-tr::after,
.ade-row-mobile-cell::before,
.ade-row-mobile-cell::after,
.facility-name::before,
.facility-name::after {
  display: none !important;
  content: none !important;
}

.ade-table-mobile-tbody tr::before, .ade-table-mobile-tbody tr::after,
.ade-table-mobile-tbody td::before,
.ade-table-mobile-tbody td::after,
.ade-table-mobile-tbody div::before,
.ade-table-mobile-tbody div::after,
.ade-table-mobile-tbody span::before,
.ade-table-mobile-tbody span::after {
  display: none !important;
  content: none !important;
}

.logo-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.logo-loader svg {
  width: 200px;
  height: 200px;
  animation: pulse 2s ease-in-out infinite alternate, rotate 12s linear infinite;
}

.loading-text {
  margin-top: 24px;
  font-size: 18px;
  color: #666;
  font-weight: 500;
  text-align: center;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1100px) {
  .ade-table-mobile-thead,
  .ade-table-mobile-thead tr,
  .ade-table-mobile-thead th {
    display: table-header-group !important;
    visibility: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .ade-table-mobile-thead tr {
    display: table-row !important;
  }
  .ade-table-mobile-thead th {
    display: table-cell !important;
  }
}
@media only screen and (max-width: 1024px) {
  .ade-table-mobile-view .ade-table-mobile {
    display: table !important;
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
  }
  .ade-table-mobile-view .ade-table-mobile-thead {
    display: table-header-group !important;
  }
  .ade-table-mobile-view .ade-table-mobile-tbody {
    display: table-row-group !important;
  }
  .ade-table-mobile-view .ade-table-mobile-tfoot {
    display: table-footer-group !important;
  }
  .ade-table-mobile-view .ade-table-mobile-thead tr,
  .ade-table-mobile-view .ade-table-mobile-tbody tr,
  .ade-table-mobile-view .ade-table-mobile-tfoot tr {
    display: table-row !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    border: none !important;
  }
  .ade-table-mobile-view .ade-table-mobile-header-cell,
  .ade-table-mobile-view .ade-row-mobile-cell,
  .ade-table-mobile-view .ade-table-no-results-mobile {
    display: table-cell !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    padding: 20px 15px 30px 15px !important;
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: top !important;
  }
  .ade-table-mobile-view .ade-table-mobile-header-cell {
    padding: 0 !important;
    border-bottom: 2px solid #00ccb7 !important;
  }
  .ade-table-mobile-view .ade-row-mobile-cell::before,
  .ade-table-mobile-view .ade-table-mobile-header-cell::before {
    display: none !important;
    content: none !important;
  }
  .ade-table-mobile-view .ade-table-mobile-header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 20px !important;
    gap: 20px !important;
  }
  .ade-table-mobile-view .ade-table-mobile-header-content h3 {
    display: block !important;
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #495057 !important;
    font-weight: 600 !important;
  }
  .ade-table-mobile-view .ade-table-sort-dropdown {
    display: block !important;
  }
  .ade-table-mobile-view .ade-table-sort-select {
    display: block !important;
    padding: 8px 12px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    background-color: white !important;
    font-size: 14px !important;
    color: #495057 !important;
    min-width: 200px !important;
    max-width: 250px !important;
  }
}
@media (max-width: 767.98px) {
  .accreditation-directory-container {
    padding: 10px;
  }
  .directory-controls {
    padding: 10px 0;
  }
  .ade-search .search-input {
    padding: 12px 15px;
    font-size: 16px;
  }
  .ade-filter {
    flex-direction: column;
    gap: 20px;
  }
  .filter-group {
    min-width: 100%;
  }
  .modality-checkboxes {
    justify-content: center;
  }
  .clear-filters {
    align-self: center;
    width: 100%;
    padding: 12px;
  }
  .ade-table {
    font-size: 13px;
  }
  .table-header th,
  #accred-dir-sticky-header th {
    padding: 10px 8px !important;
  }
  .ade-row td {
    padding: 12px 8px;
  }
  .dates-cell {
    min-width: 90px;
  }
  .facility-cell {
    min-width: 150px;
  }
  .address-cell {
    min-width: 200px;
  }
  .ct-cell,
  .mri-cell,
  .pet-cell,
  .spect-cell {
    min-width: 60px;
  }
  .subspecialty-text {
    font-size: 11px;
  }
  .directory-summary {
    padding: 8px 0;
    font-size: 13px;
  }
  .pagination {
    padding: 10px 0;
  }
  .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    padding: 12px 15px;
  }
  .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content h3 {
    font-size: 1.3rem;
    text-align: left;
  }
  .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content .ade-table-sort-dropdown .ade-table-sort-select {
    width: auto;
    min-width: 200px;
    max-width: 300px;
  }
  .ade-row-mobile-tr .ade-row-mobile-cell {
    padding: 15px 10px 25px 10px;
  }
  .ade-row-mobile-tr .facility-name {
    font-size: 1.1rem;
  }
  .ade-row-mobile-tr .modality-specialties {
    margin-left: 10px;
    padding-left: 8px;
  }
  .logo-loader svg {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 575.98px) {
  .accreditation-directory h1,
  .accreditation-directory h2 {
    font-size: 2rem;
  }
  .ade-search .search-input {
    padding: 10px 15px;
  }
  .ade-table {
    font-size: 12px;
  }
  .table-header th,
  #accred-dir-sticky-header th {
    padding: 8px 6px !important;
  }
  .ade-row td {
    padding: 10px 6px;
  }
  .modality-check {
    font-size: 14px;
  }
  .subspecialty-text {
    font-size: 10px;
  }
  .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content {
    padding: 10px 8px;
  }
  .ade-table-mobile-thead .ade-table-mobile-header-cell .ade-table-mobile-header-content h3 {
    font-size: 1.2rem;
  }
  .ade-row-mobile-tr .ade-row-mobile-cell {
    padding: 12px 8px 20px 8px;
  }
  .ade-row-mobile-tr .facility-name {
    font-size: 1rem;
  }
  .logo-loader svg {
    width: 120px;
    height: 120px;
  }
  .loading-text {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .logo-loader svg {
    width: 120px;
    height: 120px;
  }
  .loading-text {
    font-size: 16px;
    margin-top: 20px;
  }
}
