.safe-birth-shared-map .safe-birth-tooltip {
  position: absolute;
  background-color: white;
  padding: 8px 12px;
  font-size: 12px;
  pointer-events: none;
  z-index: 1000;
  max-width: 200px;
  border: 1px solid var(--Ferring-Blue, #0088CE);
  background: var(--colors-white, #FFF);
  box-shadow: 0 8px 20px 0 rgba(0, 136, 206, 0.2);
}
.safe-birth-shared-map .safe-birth-tooltip b {
  display: block;
  padding: 5px 0;
}
.safe-birth-shared-map .safe-birth-tooltip .status-icon {
  height: 16px;
  width: auto;
  margin: 0 5px 0 0;
}
.safe-birth-shared-map .safe-birth-tooltip .stat-value {
  color: #6c757d;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif !important;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: start;
}
.safe-birth-shared-map .safe-birth-tooltip .stat-value.status-yes {
  color: #0083C8;
}
.safe-birth-shared-map .safe-birth-tooltip .stat-value-large {
  color: #0083C8;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif !important;
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: start;
}
.safe-birth-shared-map {
  height: calc(100% + 60px);
  margin-top: -60px;
  position: relative;
}
.safe-birth-shared-map .shared-map {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  user-select: none;
}
.safe-birth-shared-map .shared-map svg {
  width: 100%;
}
.safe-birth-shared-map .shared-map svg path {
  stroke-width: calc(0.9 / var(--zoom-level));
  transition: fill 0.2s, stroke-width 0.2s, stroke 0.2s;
}
.safe-birth-shared-map .shared-map svg path.country-overlay-path {
  stroke-width: calc(3 / var(--zoom-level));
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: black;
  fill: transparent;
  z-index: 1;
  pointer-events: none;
}
.safe-birth-shared-map .shared-map svg .scale-100-overlay path.country-overlay-path {
  stroke-width: calc(0.9 / var(--zoom-level));
  stroke: #5FB3E8;
}
.safe-birth-shared-map .world-map-svg-with-controls {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.safe-birth-shared-map .world-map-svg-with-controls .shared-map {
  position: absolute;
}
.safe-birth-shared-map .map-job-code {
  position: absolute;
  bottom: 3%;
  left: 2%;
  font-size: 1.75vh;
  line-height: 1.25;
  display: none;
}
.safe-birth-shared-map .zoom-controls .zoom-in, .safe-birth-shared-map .zoom-controls .zoom-out {
  background-color: transparent;
  border: none;
  outline: none;
  background-image: url(images/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 28px;
  width: 28px;
  margin: 0 16px;
  cursor: pointer;
}
.safe-birth-shared-map .zoom-controls .zoom-out {
  background-image: url(images/minus.svg);
}
.safe-birth-shared-map .zoom-controls {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 64px;
  left: 10px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.safe-birth-shared-map .zoom-controls .zoom-slider {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.safe-birth-shared-map .zoom-controls .zoom-slider::-webkit-slider-thumb, .safe-birth-shared-map .zoom-controls .zoom-slider::-moz-range-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.safe-birth-shared-map .zoom-controls .zoom-label {
  font-size: 12px;
  color: #6b7280;
  min-width: 40px;
  text-align: right;
}
.safe-birth-shared-map .map-job-code {
  display: none;
}
.safe-birth-shared-map .scale-key {
  position: absolute;
  bottom: 10%;
  right: 2%;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}
.safe-birth-shared-map .scale-key .key-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.safe-birth-shared-map .scale-key .key-label {
  margin-right: 10px;
  vertical-align: middle;
  line-height: 20px;
  white-space: nowrap;
}
.safe-birth-shared-map .scale-key .key-scale-gradient {
  height: 10px;
  flex: 1 1 auto;
  margin: 0 10px;
  background: linear-gradient(90deg, #A30050 0%, #833C69 50%, #C4AFB9 100%);
}
.safe-birth-shared-map .map-controls {
  position: absolute;
  top: 0;
  right: 10px;
  transition: all 0.2s ease;
}
.safe-birth-shared-map .scale-0 {
  fill: #E8F4FD;
}
.safe-birth-shared-map .scale-0 path {
  fill: #E8F4FD;
}
.safe-birth-shared-map .scale-100 {
  fill: #D1E7FB;
}
.safe-birth-shared-map .scale-100 path {
  fill: #D1E7FB;
}
.safe-birth-shared-map .scale-200 {
  fill: #B3D9F7;
}
.safe-birth-shared-map .scale-200 path {
  fill: #B3D9F7;
}
.safe-birth-shared-map .scale-300 {
  fill: #8BC8F0;
}
.safe-birth-shared-map .scale-300 path {
  fill: #8BC8F0;
}
.safe-birth-shared-map .scale-400 {
  fill: #5FB3E8;
}
.safe-birth-shared-map .scale-400 path {
  fill: #5FB3E8;
}
.safe-birth-shared-map .scale-500 {
  fill: #0083C8;
}
.safe-birth-shared-map .scale-500 path {
  fill: #0083C8;
}
.safe-birth-shared-map .scale-600 {
  fill: #0074B7;
}
.safe-birth-shared-map .scale-600 path {
  fill: #0074B7;
}
.safe-birth-shared-map .scale-700 {
  fill: #006BA6;
}
.safe-birth-shared-map .scale-700 path {
  fill: #006BA6;
}
.safe-birth-shared-map .scale-800 {
  fill: #005A8B;
}
.safe-birth-shared-map .scale-800 path {
  fill: #005A8B;
}
.safe-birth-shared-map .scale-900 {
  fill: #004A70;
}
.safe-birth-shared-map .scale-900 path {
  fill: #004A70;
}
.safe-birth-shared-map .mmr-scale-0 {
  fill: #C4AFB9;
}
.safe-birth-shared-map .mmr-scale-0 path {
  fill: #C4AFB9;
}
.safe-birth-shared-map .mmr-scale-100 {
  fill: #B798A9;
}
.safe-birth-shared-map .mmr-scale-100 path {
  fill: #B798A9;
}
.safe-birth-shared-map .mmr-scale-200 {
  fill: #AA8199;
}
.safe-birth-shared-map .mmr-scale-200 path {
  fill: #AA8199;
}
.safe-birth-shared-map .mmr-scale-300 {
  fill: #9D6A89;
}
.safe-birth-shared-map .mmr-scale-300 path {
  fill: #9D6A89;
}
.safe-birth-shared-map .mmr-scale-400 {
  fill: #905379;
}
.safe-birth-shared-map .mmr-scale-400 path {
  fill: #905379;
}
.safe-birth-shared-map .mmr-scale-500 {
  fill: #833C69;
}
.safe-birth-shared-map .mmr-scale-500 path {
  fill: #833C69;
}
.safe-birth-shared-map .mmr-scale-600 {
  fill: #7A2C5D;
}
.safe-birth-shared-map .mmr-scale-600 path {
  fill: #7A2C5D;
}
.safe-birth-shared-map .mmr-scale-700 {
  fill: #721C51;
}
.safe-birth-shared-map .mmr-scale-700 path {
  fill: #721C51;
}
.safe-birth-shared-map .mmr-scale-800 {
  fill: #6A0C45;
}
.safe-birth-shared-map .mmr-scale-800 path {
  fill: #6A0C45;
}
.safe-birth-shared-map .mmr-scale-900 {
  fill: #A30050;
}
.safe-birth-shared-map .mmr-scale-900 path {
  fill: #A30050;
}
.safe-birth-country-sidebar {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 0;
  z-index: 10;
  height: 100%;
  transition: width 0.3s ease;
  width: 4rem;
  margin-right: -1px;
}
.safe-birth-country-sidebar.open {
  width: 424px;
  margin-right: 0;
}
@media (max-width: 768px) {
  .safe-birth-country-sidebar.open {
    width: 100%;
  }
}
.safe-birth-country-sidebar .sidebar-inner {
  border-left: 1px solid #81d4fa;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: #ffffff;
  height: 100%;
  width: 100%;
}
.safe-birth-country-sidebar .sidebar-header {
  padding: 12px 16px;
  background: white;
  border-bottom: 1px solid #81d4fa;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  top: 0;
}
.safe-birth-country-sidebar .sidebar-header .header-text {
  color: black;
  font-size: 14px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif !important;
}
.safe-birth-country-sidebar .sidebar-header img {
  height: 20px;
  width: auto;
  margin-right: 8px;
}
.safe-birth-country-sidebar .sidebar-top-buttons {
  border-bottom: 1px solid #dee2e6;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  outline-width: 0;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button:focus {
  outline-width: 0;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button {
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button:last-child {
  border-bottom: none;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button .icon {
  font-size: 14px;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button.approvals {
  background: #0083C8;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button.guidelines {
  background: rgba(0, 136, 206, 0.8);
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button.mortality {
  background: rgba(0, 136, 206, 0.6);
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button:hover {
  opacity: 0.9;
}
.safe-birth-country-sidebar .sidebar-top-buttons .top-button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;
}
.safe-birth-country-sidebar .sidebar-instruction {
  padding: 16px;
  color: #0083C8;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  background: #ffffff;
}
.safe-birth-country-sidebar .sidebar-content {
  position: relative;
  flex: 1;
  padding: 0;
}
.safe-birth-country-sidebar .sidebar-content .country-item {
  padding: 12px 16px;
  border-bottom: 1px solid #e9ecef;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.safe-birth-country-sidebar .sidebar-content .country-item:hover {
  background: #f8f9fa;
}
.safe-birth-country-sidebar .sidebar-content .country-item:focus {
  outline: 2px solid #0083C8;
  outline-offset: -2px;
  background: #f8f9fa;
}
.safe-birth-country-sidebar .sidebar-content .country-item.selected {
  background: rgba(0, 131, 200, 0.1019607843);
  border-left: 3px solid #0083C8;
  padding-left: 13px;
}
.safe-birth-country-sidebar .sidebar-content .country-item .country-name {
  font-weight: 400;
  color: #1a1a1a;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  flex: 1;
}
.safe-birth-country-sidebar .sidebar-content .country-item .country-chevron {
  color: #6c757d;
  font-size: 16px;
  font-weight: bold;
}
.safe-birth-country-sidebar .sidebar-content .no-countries {
  padding: 40px 20px;
  text-align: center;
  color: #495057;
  font-style: italic;
}
.safe-birth-country-sidebar .sidebar-content .no-countries p {
  margin: 0;
  font-size: 14px;
}
.safe-birth-country-sidebar .sidebar-closed-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  width: calc(100% - 40px);
}
.safe-birth-country-sidebar .sidebar-closed-content .closed-arrow {
  font-size: 24px;
  color: #e1e5e9;
  margin-bottom: 16px;
}
.safe-birth-country-sidebar .sidebar-closed-content .closed-message h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.safe-birth-country-sidebar .sidebar-closed-content .closed-message p {
  margin: 0;
  font-size: 14px;
  color: #495057;
  line-height: 1.4;
}

.country-stats {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.country-stats .safe-birth-view-toggle {
  border: 0;
  width: 100%;
  display: flex;
}
.country-stats .safe-birth-view-toggle button {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 33.33%;
  overflow: hidden;
  text-wrap: wrap;
  line-height: 1.2;
  font-size: 11px;
  gap: 4px;
  border-right: 1px solid #dee2e6;
  background: #ffffff;
  color: #1a1a1a;
  transition: background-color 0.2s ease;
  font-family: Arial, Helvetica, sans-serif !important;
}
@media (max-width: 768px) {
  .country-stats .safe-birth-view-toggle button {
    width: 100%;
  }
}
.country-stats .safe-birth-view-toggle button:last-child {
  border-right: none;
}
.country-stats .safe-birth-view-toggle button.active {
  background: rgba(0, 131, 200, 0.1019607843);
  font-weight: 600;
}
.country-stats .safe-birth-view-toggle button:hover:not(.active) {
  background: #f8f9fa;
}
.country-stats .safe-birth-view-toggle button .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.country-stats .approvals-stats,
.country-stats .guidelines-stats,
.country-stats .mortality-stats {
  padding: 20px;
  background: #ffffff;
  flex: 1;
  overflow-y: auto;
}
.country-stats .approvals-stats .country-header,
.country-stats .guidelines-stats .country-header,
.country-stats .mortality-stats .country-header {
  margin-bottom: 24px;
}
.country-stats .approvals-stats .country-header .country-label,
.country-stats .guidelines-stats .country-header .country-label,
.country-stats .mortality-stats .country-header .country-label {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif !important;
}
.country-stats .approvals-stats .country-header .country-name-large,
.country-stats .guidelines-stats .country-header .country-name-large,
.country-stats .mortality-stats .country-header .country-name-large {
  color: #1a1a1a;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif !important;
}
.country-stats .approvals-stats .stat-divider,
.country-stats .guidelines-stats .stat-divider,
.country-stats .mortality-stats .stat-divider {
  height: 1px;
  background: #dee2e6;
  margin: 24px 0;
}
.country-stats .approvals-stats .quantity-stats,
.country-stats .guidelines-stats .quantity-stats,
.country-stats .mortality-stats .quantity-stats {
  display: flex;
  gap: 20px;
}
.country-stats .approvals-stats .quantity-stats .quantity-item,
.country-stats .guidelines-stats .quantity-stats .quantity-item,
.country-stats .mortality-stats .quantity-stats .quantity-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.country-stats .approvals-stats .quantity-stats .quantity-item .stat-label,
.country-stats .guidelines-stats .quantity-stats .quantity-item .stat-label,
.country-stats .mortality-stats .quantity-stats .quantity-item .stat-label {
  color: #0083C8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif !important;
}
.country-stats .approvals-stats .quantity-stats .quantity-item .stat-sublabel,
.country-stats .guidelines-stats .quantity-stats .quantity-item .stat-sublabel,
.country-stats .mortality-stats .quantity-stats .quantity-item .stat-sublabel {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif !important;
}
.country-stats .approvals-stats .quantity-stats .quantity-item .stat-value-large,
.country-stats .guidelines-stats .quantity-stats .quantity-item .stat-value-large,
.country-stats .mortality-stats .quantity-stats .quantity-item .stat-value-large {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif !important;
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: start;
}
.country-stats .approvals-stats p,
.country-stats .guidelines-stats p,
.country-stats .mortality-stats p {
  color: #495057;
  font-size: 14px;
  font-style: italic;
  margin: 20px 0;
  font-family: Arial, Helvetica, sans-serif !important;
}

.country-list {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: white;
}

.safe-birth-sidebar-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  outline-width: 0;
}
.safe-birth-sidebar-toggle:focus {
  outline-width: 0;
}
.safe-birth-sidebar-toggle {
  height: 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f4fd;
  border-bottom: 1px solid #81d4fa;
  border-left: 1px solid #81d4fa;
  cursor: pointer;
  flex-shrink: 0;
}
.safe-birth-sidebar-toggle img {
  height: 24px;
  width: auto;
}
.safe-birth-sidebar-toggle.open img {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .safe-birth-sidebar-toggle.open {
    height: 100%;
    width: 1rem;
    border-left: 0;
  }
}

@media print {
  .safe-birth-country-sidebar {
    display: none;
  }
}
.stat-item img {
  height: 20px;
  width: auto;
}
@charset "UTF-8";
/**
 * Safe Birth Widget React Component Styles
 * Version 14.0.0 - SCSS for React Component
 */
.safe-birth-container .position-absolute {
  position: absolute;
}
.safe-birth-container .justify-between {
  justify-content: space-between;
}
.safe-birth-container .t-0 {
  top: 0;
}
.safe-birth-container .b-0 {
  bottom: 0;
}
.safe-birth-container .l-0 {
  left: 0;
}
.safe-birth-container .r-0 {
  right: 0;
}
.safe-birth-container .p-1 {
  padding: 4px;
}
.safe-birth-container .ferring-logo {
  display: none;
}
.safe-birth-container .print-safe-birth-header {
  display: none;
}
.safe-birth-container b, .safe-birth-container strong {
  font-weight: 600;
}
.safe-birth-container .d-flex {
  display: flex;
}
.safe-birth-container .flex-column {
  flex-direction: column;
}
.safe-birth-container .mb-1 {
  margin-bottom: 4px;
}
.safe-birth-container .pe-none {
  pointer-events: none;
}
.safe-birth-container .pe-auto {
  pointer-events: auto;
}
.safe-birth-container .flex-fill {
  flex: 1;
}
.safe-birth-container .position-relative {
  position: relative;
}
.safe-birth-container .current-view-container {
  position: relative;
  flex: 1 1 auto;
}
.safe-birth-container .h-100 {
  height: 100%;
}
.safe-birth-container .rotate-180 {
  transform: rotate(180deg);
}
.safe-birth-container .cursor-pointer {
  cursor: pointer;
}
.safe-birth-container .align-items-center {
  align-items: center;
}
.safe-birth-container {
  height: 814px;
  max-height: 100vh;
  font-family: Arial, Helvetica, sans-serif !important;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #81d4fa;
  position: relative;
}
.safe-birth-container * {
  box-sizing: border-box;
}
.safe-birth-container .icon {
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: bottom;
}
.safe-birth-container .stat-item {
  margin-bottom: 20px;
}
.safe-birth-container .stat-item .stat-label {
  color: #0083C8;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif !important;
}
.safe-birth-container .stat-item .stat-sublabel {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif !important;
}
.safe-birth-container .stat-item .stat-value {
  display: flex;
  align-items: center;
  gap: 8px;
}
.safe-birth-container .stat-item .stat-value .status-icon {
  background: #28a745;
  color: #ffffff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}
.safe-birth-container .stat-item .stat-value .status-text {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif !important;
}
.safe-birth-container .stat-item .stat-value.status-yes .status-icon {
  background: #28a745;
}
.safe-birth-container .stat-item .stat-value.status-no .status-icon {
  background: #dc3545;
}
.safe-birth-container .stat-item .stat-value.status-wip .status-icon {
  background: #ffc107;
  color: #1a1a1a;
}
.safe-birth-container .stat-item .stat-value.status-default .status-text {
  color: #495057;
  font-weight: 400;
}

.safe-birth-widget-container {
  max-width: 1286px;
  width: 100%;
}

.safe-birth-header {
  z-index: 1;
  padding: 24px 24px 16px 24px;
}
.safe-birth-header h1 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.safe-birth-header p {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.safe-birth-category-headers {
  display: flex;
  margin-bottom: 16px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
}
.safe-birth-category-headers .category-header {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.safe-birth-category-headers .category-header.approvals {
  background: #0083C8;
}
.safe-birth-category-headers .category-header.guidelines {
  background: rgba(0, 136, 206, 0.8);
}
.safe-birth-category-headers .category-header.mortality {
  background: rgba(0, 136, 206, 0.6);
}
.safe-birth-category-headers .category-header .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.safe-birth-view-toggle {
  display: inline-flex;
  gap: 0;
  padding: 2px;
  margin-bottom: 0;
  border: 1px solid #0083C8;
  width: auto;
  background: #ffffff;
}
.safe-birth-view-toggle button, .safe-birth-view-toggle select {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  outline-width: 0;
}
.safe-birth-view-toggle button:focus, .safe-birth-view-toggle select:focus {
  outline-width: 0;
}
.safe-birth-view-toggle button, .safe-birth-view-toggle select {
  padding: 8px;
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  white-space: nowrap;
}
.safe-birth-view-toggle button:not(:last-child), .safe-birth-view-toggle select:not(:last-child) {
  border-right: 1px solid #e9ecef;
}
.safe-birth-view-toggle button:active, .safe-birth-view-toggle button:focus, .safe-birth-view-toggle select:active, .safe-birth-view-toggle select:focus {
  border: none;
  outline: none;
}
.safe-birth-view-toggle button.active, .safe-birth-view-toggle select.active {
  background: rgba(0, 131, 200, 0.1019607843);
  font-weight: bold;
}
.safe-birth-view-toggle button:hover:not(.active), .safe-birth-view-toggle select:hover:not(.active) {
  background: rgba(44, 90, 160, 0.1);
  color: #1a1a1a;
}

.safe-birth-section-header {
  height: 60px;
  border-bottom: 1px solid #e1e5e9;
}
.safe-birth-section-header .section {
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
  color: var(--colors-white, #FFF);
  font-family: Helvetica, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.safe-birth-section-header .section:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.safe-birth-section-header .section.approvals {
  background: #0083C8;
}
.safe-birth-section-header .section.guidelines {
  background: rgba(0, 136, 206, 0.8);
}
.safe-birth-section-header .section.mortality {
  background: rgba(0, 136, 206, 0.6);
}
.safe-birth-section-header .section .icon {
  margin-right: 8px;
  font-size: 16px;
}

.safe-birth-table-responsive {
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  max-height: min(80vh, 600px);
  width: 100%;
  padding: 0 3rem;
  height: 100%;
  position: absolute;
}

.safe-birth-container select {
  padding: 8px;
  font-size: 13px;
  line-height: 22px;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  white-space: nowrap;
  border: 1px solid #0083C8;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ffffff url(images/chevron-down.svg) no-repeat right 12px center;
  background-size: 16px 16px;
  padding-right: 36px;
}

.safe-birth-table {
  width: 100%;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #e1e5e9;
  border-collapse: separate;
  border-spacing: 0;
}
.safe-birth-table thead {
  position: sticky;
  top: 0;
  z-index: 3;
}
.safe-birth-table thead tr {
  background: #f8f9fa;
  border-bottom: 1px solid #e1e5e9;
}
.safe-birth-table tr:first-child th:first-child {
  background: white;
}
.safe-birth-table tr > th {
  padding: 12px 4px;
  text-align: center;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 11px;
  line-height: 1.3;
  position: relative;
  vertical-align: middle;
  border-right: 1px solid #e1e5e9;
  width: 10%;
}
.safe-birth-table tr > th:last-child {
  border-right: none;
}
.safe-birth-table tr > th.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-bottom: 20px;
}
.safe-birth-table tr > th.sortable:hover {
  background: #e9ecef;
  color: #2c5aa0;
}
.safe-birth-table tr > th.sortable:hover .sort-indicator {
  opacity: 0.7;
}
.safe-birth-table tr > th.sortable:first-child:hover {
  background: #dee2e6;
}
.safe-birth-table tr > th.sortable.sorted-asc .sort-indicator, .safe-birth-table tr > th.sortable.sorted-desc .sort-indicator {
  color: #2c5aa0;
}
.safe-birth-table tr > th:first-child {
  background: #e9ecef;
  color: #2c5aa0;
  font-weight: 700;
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
  border-right: 1px solid #dee2e6;
}
.safe-birth-table th:nth-child(4),
.safe-birth-table th:nth-child(5),
.safe-birth-table th:nth-child(9),
.safe-birth-table th:nth-child(10),
.safe-birth-table th:nth-child(11) {
  text-align: center;
}
.safe-birth-table tr:nth-child(2) th:nth-child(2),
.safe-birth-table tr:nth-child(2) th:nth-child(3),
.safe-birth-table tr:nth-child(2) th:nth-child(4),
.safe-birth-table tr:nth-child(2) th:nth-child(5) {
  background: rgba(0, 136, 206, 0.2);
}
.safe-birth-table tr:nth-child(2) th:nth-child(6),
.safe-birth-table tr:nth-child(2) th:nth-child(7),
.safe-birth-table tr:nth-child(2) th:nth-child(8) {
  background: rgba(0, 136, 206, 0.1);
}
.safe-birth-table tr:nth-child(2) th:nth-child(9),
.safe-birth-table tr:nth-child(2) th:nth-child(10),
.safe-birth-table tr:nth-child(2) th:nth-child(11) {
  background: rgba(0, 136, 206, 0.05);
}
.safe-birth-table td {
  padding: 8px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
  line-height: 1.4;
  font-size: 12px;
  text-align: center;
  border-right: 1px solid #e9ecef;
}
.safe-birth-table td:last-child {
  border-right: none;
}
.safe-birth-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: inherit;
  z-index: 1;
  text-align: left;
  font-weight: 600;
  color: #1a1a1a;
  border-right: 1px solid #dee2e6;
}
.safe-birth-table td.numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
  padding-right: 12px;
}
.safe-birth-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}
.safe-birth-table tbody tr:nth-child(even) td:first-child {
  background: #f8f9fa;
}
.safe-birth-table tbody tr {
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.safe-birth-table tbody tr:hover {
  background: #e3f2fd !important;
}
.safe-birth-table tbody tr:hover td:first-child {
  background: #e3f2fd !important;
}
.safe-birth-table tbody tr.selected {
  background: #bbdefb !important;
}
.safe-birth-table tbody tr.selected td:first-child {
  background: #bbdefb !important;
}
.safe-birth-table tbody tr.selected td:not(.empty-cell) {
  font-weight: bold;
}

.sort-indicator {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  font-size: 10px;
  transition: opacity 0.2s ease;
}
.sort-indicator::before {
  content: "↕";
}
.sort-indicator.sorted-asc::before {
  content: "↑";
}
.sort-indicator.sorted-desc::before {
  content: "↓";
}

.status-approved {
  text-align: center;
}

.status-text {
  color: #495057;
  font-size: 12px;
  font-weight: 500;
}

.empty-cell {
  color: #6c757d;
  font-size: 14px;
  opacity: 0.5;
}

.numeric-value {
  font-variant-numeric: tabular-nums;
}

.safe-birth-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 16px;
  font-style: italic;
  background: #f8f9fa;
  margin: 0;
}

.safe-birth-table-footer, .subtext {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

.safe-birth-table-footer {
  padding: 12px 24px;
}

.safe-birth-no-data {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 16px;
  font-style: italic;
  background: #f8f9fa;
  margin: 0;
}

@media (max-width: 768px) {
  .safe-birth-header {
    padding: 16px;
  }
  .safe-birth-header h1 {
    font-size: 20px;
  }
  .safe-birth-view-toggle {
    flex-direction: column;
    gap: 4px;
  }
  .safe-birth-view-toggle button {
    min-height: 40px;
  }
  .safe-birth-section-header {
    flex-direction: column;
    height: auto;
  }
  .safe-birth-section-header .section {
    padding: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .safe-birth-table {
    font-size: 11px;
    min-width: 1000px;
  }
  .safe-birth-table th,
  .safe-birth-table td {
    padding: 6px 4px;
  }
  .safe-birth-table-responsive {
    max-height: 600px;
    padding: 0;
  }
}
.safe-birth-container.full-screen {
  position: fixed;
  z-index: 100;
  background: white;
  left: 0;
  top: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
}

.safe-birth-container.print .safe-birth-header,
.safe-birth-container.print .safe-birth-country-sidebar,
.safe-birth-container.print .zoom-controls,
.safe-birth-container.print .map-controls {
  display: none;
}
.safe-birth-container.print .print-safe-birth-header {
  display: block;
  z-index: 1;
  padding: 2%;
}
.safe-birth-container.print .print-safe-birth-header h1 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 4vh;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.safe-birth-container.print .print-safe-birth-header p {
  margin: 10px 0 20px 0;
  font-size: 1.75vh;
  color: #666;
  line-height: 1.4;
}
.safe-birth-container.print .ferring-logo {
  position: absolute;
  bottom: 3%;
  right: 3.75%;
  width: 15vh;
  display: block;
}
.safe-birth-container.print .map-job-code {
  display: block;
}
.safe-birth-container.print .safe-birth-shared-map .shared-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -10vh;
}
.safe-birth-container.print .safe-birth-shared-map {
  margin-top: unset;
}
.safe-birth-container.print .safe-birth-shared-map .scale-key {
  bottom: 16%;
  right: 2%;
  font-size: 2vh;
}
.safe-birth-container.print .safe-birth-shared-map .scale-key .key-icon {
  width: 3vh;
  height: 3vh;
  margin-right: 1vh;
}
.safe-birth-container.print .safe-birth-shared-map .scale-key .key-label {
  margin-right: 3vh;
  line-height: 3vh;
}
.safe-birth-container.print .safe-birth-shared-map .scale-key .key-scale-gradient {
  height: 1.5vh;
  margin: 0 1.5vh;
}

/*# sourceMappingURL=safe-birth-widget.css.map*/