#map {
  width: 100%;
  height: 100%;
}

/* Controls */
#controls {
    position: absolute;
    top: 5px;
    left: 10px;
    background: rgba(250, 250, 250, 0.95);
    padding: 6px;
    border: 1px solid rgba(220, 220, 220, 0.4);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
    contain: layout style;
    overflow: visible;
}

#controls button {
  display: block;
  width: 40px; /* Smaller size */
  height: 40px;
  margin: 6px 0;
  background: rgba(250, 250, 250, 0.9); /* Whiter translucent base */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  line-height: 36px;
  font-size: 16px; /* Smaller icons */
  color: #010203; /* Dark icons */
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  overflow: visible;
  opacity: 90;
  will-change: transform;
  transform: translateZ(0);
}

#controls button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate3d(2px, 0, 0); /* Subtle slide with GPU acceleration */
}

#controls button:active {
  background: rgba(255, 255, 255, 0.3);
  transform: translate3d(0, 0, 0);
}

#controls button::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(234, 132, 0, 0.3) 10%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

#controls button:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease;
}

/* Optional: Add a colorful ripple effect on click */
#controls button::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 10%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

#controls button:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease;
}

/* Search Bar */
#search-bar {
    position: absolute;
    top: 5px;
    left: 80px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border: 1px solid rgba(220, 220, 220, 0.4);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    contain: layout style;
}

#search-bar input {
  width: 388px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  color: #010203; /* Dark text */
  transition: all 0.3s ease;
}

#search-bar input:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(234, 132, 0, 0.5);
}

#search-bar button {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9); /* Whiter base */
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #010203; /* Dark icon */
  transition: transform 0.2s ease, background-color 0.2s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}

#search-bar button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate3d(2px, 0, 0);
}

#search-bar button:active {
  background: rgba(255, 255, 255, 0.3);
  transform: translate3d(0, 0, 0);
}

#search-bar button::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(234, 132, 0, 0.3) 10%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

#search-bar button:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease;
}

/* Suggestions Dropdown */
#suggestions {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 400px;
  width: 300px;
}

#suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.98); /* Whiter base */
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  contain: layout style;
}

#suggestions li {
  padding: 8px;
  cursor: pointer;
  color: #010203; /* Dark text */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

#suggestions li:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #035391 ; /* Orange on hover */
}

/* Output Window */
#output-window {
  position: fixed;
  top: 85px;
  left:101px;
  background: rgba(255, 255, 255, 0.98); /* Whiter base */
  padding: 15px;
  padding-top: 35px;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 370px;
  max-width: 402px !important;
  max-height: 600px;
  overflow-y: overlay;
  z-index: 10;
  display: none;
  contain: layout style;
}

#output-window select,
#output-window input[type="text"],
#output-window button {
  margin: 5px;
}

#output-window #street-view-pane {
  width: 370px !important;
  height: 370px;
  /* Match JavaScript height */
}

#output-window #street-view-container {
  width: 370px !important;

  height: 370px;
  position: relative;
}

#output-window #gm-sv-map {
  width: 370px !important;
  height: 370px;
  position: relative;
}

#output-window .close-btn {
  position: absolute;
  top: 2px;
  /* Increased from 5px for more clearance */
  right: 2px;
  /* Increased from 5px for more clearance */
  background: none;
  border: none;
  padding: 5px;
  /* Added padding for larger clickable area */
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

#output-window .close-btn:hover {
  color: #000;
}

#output-window #query-results-content {
  max-height: 300px;
  overflow-y: auto;
}

#output-window .popout-content {
  margin-top: 10px;
  /* Increased from 20px to avoid overlap with close button */
}

#legend img {
  max-width: 20px;
  margin-right: 5px;
}

/* Layer list container */
.layer-list {
  /* background: #fff; */
  /* border: 1px solid #ccc;
border-radius: 8px; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  padding: 15px;
  font-family: "Arial", Montserrat;
  min-width: 370px;
  max-width: 370px;
}

/* Group container */
.layer-group {
  margin-bottom: 15px;
  /* Add divider between groups, except for the last group */
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

/* Remove border for the last group to avoid extra line at the bottom */
.layer-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Group header */
.group-header {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

/* Toggle button */
.group-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  padding: 5px;
  margin-right: 8px;
  transition: color 0.2s;
}

.group-toggle:hover {
  color: #ea8400;
}

/* Group checkbox container */
.group-checkbox-container {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
}

/* Group checkbox */
.group-checkbox {
  opacity: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  cursor: pointer;
  zindex: 1;
}

/* Custom checkbox styling */
.group-checkbox + .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: background 0.2s, border 0.2s;
  pointer-events: none;
}

/* Checked state with orange eye icon */
.group-checkbox:checked + .custom-checkbox {
  background: #0370c4;
  border-color: #0370c4;
}

.group-checkbox:checked + .custom-checkbox::after {
  content: "\f06e";
  /* Font Awesome fa-eye */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
}

/* Unchecked state with gray eye-slash icon */
.group-checkbox:not(:checked) + .custom-checkbox::after {
  content: "\f070";
  /* Font Awesome fa-eye-slash */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6c757d;
  font-size: 12px;
}

/* Hover effect */
.group-checkbox:hover + .custom-checkbox {
  border-color: #ea8400;
}

/* Group label */
.group-label {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  font-size: 15px;
}

/* Layer container */
.group-layers {
  margin-left: 20px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.group-layers[style*="display: none"] {
  max-height: 0;
  opacity: 0;
}

.group-layers[style*="display: block"] {
  max-height: 100%;
  opacity: 1;
}

/* Layer item */
.layer-item {
  padding: 8px 0;
  /* Add divider between layers, except for the last layer in each group */
  border-bottom: 1px solid #e0e0e0;
}

/* Remove border for the last layer in each group */
.layer-item:last-child {
  border-bottom: none;
}

/* Layer checkbox container */
.layer-checkbox-container {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
}

/* Layer checkbox */
.layer-checkbox {
  opacity: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  cursor: pointer;
  zindex: 1;
}

/* Custom checkbox styling */
.layer-checkbox + .custom-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: background 0.2s, border 0.2s;
  pointer-events: none;
}

/* Checked state with orange eye icon */
.layer-checkbox:checked + .custom-checkbox {
  background: #0370c4;
  border-color: #0370c4;
}

.layer-checkbox:checked + .custom-checkbox::after {
  content: "\f06e";
  /* Font Awesome fa-eye */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
}

/* Unchecked state with gray eye-slash icon */
.layer-checkbox:not(:checked) + .custom-checkbox::after {
  content: "\f070";
  /* Font Awesome fa-eye-slash */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6c757d;
  font-size: 12px;
}

/* Hover effect */
.layer-checkbox:hover + .custom-checkbox {
  border-color: #0370c4;
}

/* Layer label */
.layer-label {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

/* Layer label text */
.layer-label span {
  display: inline-block;
}

/* Layer label hover */
.layer-label:hover {
  color: #0370c4;
}

/* Layer legend container */
.layer-legend {
  margin-left: 26px;
  padding: 8px 0;
  /* Increased padding for better spacing with dividers */
}

/* Legend item (single layer) */
.legend-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  /* margin: 5px 0; */
  /* Increased margin for visual separation */
}

/* Legend icon */
.legend-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

/* Status legend container */
.status-legend {
  margin-left: 26px;
  padding: 8px 0;
  /* Increased padding for consistency */
}

/* Status legend item */
.status-legend-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
  margin: 5px 0;
  /* Increased margin for visual separation */
}

/* Status legend icon */
.status-legend-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

/* Layer List (widget) */
#flayer-list-btn {
  display: block;
  width: 40px;
  height: 40px;
  margin: 5px 0;
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}

#layer-list-btn:hover {
  background: #5a6268;
  /* Darker gray on hover when inactive */
}

/* Active layer button state */
#layer-list-btn.layer-list-btn-active {
  background: #0370c4;
  color: white;
  /* Green to indicate active filter */
}

#layer-list-btn.layer-list-btn-active:hover {
  background: #0370c4;
  color: white;
  /* Darker green on hover when active */
}
#layer-list {
  display: none !important;
}
/* Filter button (widget) */
#filter-btn {
  display: block;
  width: 40px;
  height: 40px;
  margin: 5px 0;
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  position: relative;
  overflow: visible;
}

/* Filter count chip badge */
.filter-count-chip {
  position: absolute !important;
  top: -8px !important;
  right: -40px !important;
  background: #035391 !important;
  color: white !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 3px 6px !important;
  border-radius: 10px !important;
  min-width: 18px !important;
  text-align: center !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  line-height: 1.2 !important;
  border: 2px solid white !important;
  z-index: 1000 !important;
  pointer-events: none !important;
}

#filter-btn:hover {
  background: #5a6268;
  /* Darker gray on hover when inactive */
}

/* Active filter button state */
  #filter-btn.filter-btn-active {
    background: #035391;
    color: white !important;
  }
  
  #filter-btn.filter-btn-active i {
    color: white !important;
  }
  
  #filter-btn.filter-btn-active:hover {
    background: #024070;
    color: white !important;
  }
  
  #filter-btn.filter-btn-active:hover i {
    color: white !important;
  }

/* Filter container */
.filter-container {
  /* background: rgba(255, 255, 255, 0.95); */
  padding: 15px;
  font-family: "Arial", Montserrat;
  min-width: 370px;

  border-radius: 5px;
}

/* Filter item (label and select pair) */
.filter-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

/* Filter label */
.filter-label {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  margin-right: 10px;
}

/* Filter select (dropdowns) */
.filter-select {
  padding: 6px 10px;
  font-size: 14px;
  color: #333;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  /* max-width: 1; */
}

.filter-select:hover,
.filter-select:focus {
  border-color: rgb(195, 111, 2);
  background: #fff;
  outline: none;
}

/* Filter input container */
.filter-input-container {
  padding: 8px 0;
}

/* Filter text input */
.filter-input {
  padding: 6px 10px;
  font-size: 14px;
  color: #333;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  /* max-width: 200px; */
  transition: border-color 0.2s, background-color 0.2s;
}

.filter-input:hover,
.filter-input:focus {
  border-color: rgb(195, 111, 2);
  background: #fff;
  outline: none;
}

/* Filter buttons container */
.filter-buttons {
  display: flex;
  gap: 10px;
  padding: 8px 0;
}

/* Filter buttons */
.filter-button {
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Apply button */
.filter-button-condition {
   background: linear-gradient(135deg, #c46f00, #EA8400);
}

.filter-button-condition:hover {
  background: #884d01;
}

/* Apply button */
.filter-button-apply {
  background: linear-gradient(135deg, #035391, #0a7bc4);
}
.filter-button-report {
  background: #c71585;
}
.filter-button-apply:hover {
  background: linear-gradient(135deg, #0380df, #28a2f3);
}

/* Clear button */
.filter-button-clear {
background: linear-gradient(135deg, #4a5259, #6c757d);
}

.filter-button-clear:hover {
  background: #5a6268;
}

/* #report-btn.active {
  background: #0370c4;

}

#report-btn.active:hover {
  background: #0370c4; */

/* } */
.map-container:fullscreen {
  width: 100vw;
  height: 100vh;
  background: white;
}

.map-container:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  background: white;
}

.map-container:-moz-full-screen {
  width: 100vw;
  height: 100vh;
  background: white;
}

.map-container:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  background: white;
}

/* Ensure widgets stay on top in fullscreen */
.map-container:fullscreen .widget-container {
  position: absolute;
  z-index: 1000;
}

.map-container:-webkit-full-screen .widget-container {
  position: absolute;
  z-index: 1000;
}

.map-container:-moz-full-screen .widget-container {
  position: absolute;
  z-index: 1000;
}

.map-container:-ms-fullscreen .widget-container {
  position: absolute;
  z-index: 1000;
}
.bulk-update-container, .bulk-update-select, .bulk-update-input, .bulk-update-button {
  padding: 15px;
  font-family: "Arial", Montserrat;
  max-width: 320px;

  border-radius: 5px;
}
.bulk-update-select, .bulk-update-input {
  padding: 6px 10px;
  font-size: 14px;
  color: #333;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 200px;
  transition: border-color 0.2s, background-color 0.2s;
}
.bulk-update-button {
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.bulk-update-button-apply {
 background: #0370c4;
}
.bulk-update-button-apply-filter {
   background: linear-gradient(135deg, #035391, #0a7bc4);
 }
 .bulk-update-button-draw-polygon {
background: linear-gradient(135deg, #8f0f5f, #c71585);
 }
.bulk-update-button-condition {
  background: linear-gradient(135deg, #c46f00, #EA8400);
  color: white;
  border: none;
  cursor: pointer;
}
.bulk-update-button-clear, .bulk-update-button-cancel {
background: linear-gradient(135deg, #4a5259, #6c757d);
}
.bulk-update-btn-active {
  background: #02508c;
  color: white;
}
.autocomplete-suggestions {
  z-index: 999999;
}
/* ===== MOBILE RESPONSIVENESS FOR MAP ===== */

/* Mobile optimizations for map controls and widgets */
@media (max-width: 768px) {
  /* Controls container - make it more compact */
  #controls {
    top: 10px;
    left: 10px;
    padding: 4px;
  }
  
  #controls button {
    width: 35px;
    height: 35px;
    margin: 4px 0;
    font-size: 14px;
    line-height: 32px;
  }
  
  /* Search bar - make it responsive */
  #search-bar {
    top: 10px;
    left: 60px;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 80px);
    padding: 4px;
  }
  
  #search-bar input {
    width: 100%;
    max-width: 100%;
    min-width: 120px;
    padding: 8px;
    font-size: 14px;
  }
  
  #search-bar button {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  /* Suggestions dropdown - make it responsive */
  #suggestions {
    left: 0;
    right: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }
  
  /* Output window - make it responsive */
  #output-window {
    top: 65px;
    left: 10px;
    right: 10px;
    width: auto !important;
    min-width: auto !important;
    max-width: calc(100vw - 20px) !important;
    padding: 12px;
    padding-top: 35px;
    max-height: calc(100vh - 80px);
  }
  
  #output-window #street-view-pane,
  #output-window #street-view-container,
  #output-window #gm-sv-map {
    width: 100% !important;
    max-width: 100% !important;
    height: 250px !important;
  }
  
  #output-window #query-results-content {
    max-height: 200px;
  }
  
  /* Layer list - make it responsive */
  .layer-list {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 12px;
  }
  
  .layer-group,
  .group-layers {
    margin-left: 10px;
  }
  
  .group-label,
  .layer-label {
    font-size: 14px;
  }
  
  .legend-item,
  .status-legend-item {
    font-size: 12px;
  }
  
  /* Filter container - make it responsive */
  .filter-container,
  .bulk-update-container {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 12px;
  }
  
  .filter-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .filter-select,
  .filter-input,
  .bulk-update-select,
  .bulk-update-input {
    width: 100%;
    max-width: 100%;
  }
  
  .filter-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .filter-button,
  .bulk-update-button {
    width: 100%;
  }
  
  /* Filter count chip - adjust position for mobile */
  .filter-count-chip {
    right: -10px !important;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  #controls {
    top: 5px;
    left: 5px;
    padding: 3px;
  }
  
  #controls button {
    width: 32px;
    height: 32px;
    margin: 3px 0;
    font-size: 12px;
    line-height: 28px;
  }
  
  #search-bar {
    top: 5px;
    left: 48px;
    right: 5px;
    max-width: calc(100vw - 58px);
    padding: 3px;
  }
  
  #search-bar input {
    padding: 6px;
    font-size: 13px;
  }
  
  #search-bar button {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  #output-window {
    top: 55px;
    left: 5px;
    right: 5px;
    max-width: calc(100vw - 10px) !important;
    padding: 10px;
    padding-top: 30px;
  }
  
  #output-window #street-view-pane,
  #output-window #street-view-container,
  #output-window #gm-sv-map {
    height: 200px !important;
  }
  
  .layer-list,
  .filter-container,
  .bulk-update-container {
    padding: 10px;
  }
  
  .group-label,
  .layer-label {
    font-size: 13px;
  }
  
  .legend-item,
  .status-legend-item {
    font-size: 11px;
  }
  
  .filter-label {
    font-size: 14px;
  }
  
  .filter-select,
  .filter-input,
  .bulk-update-select,
  .bulk-update-input,
  .filter-button,
  .bulk-update-button {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* Landscape mobile - optimize for horizontal space */
@media (max-width: 768px) and (orientation: landscape) {
  #search-bar {
    max-width: calc(100vw - 200px);
  }
  
  #output-window {
    max-width: 400px !important;
    max-height: calc(100vh - 20px);
  }
  
  #output-window #street-view-pane,
  #output-window #street-view-container,
  #output-window #gm-sv-map {
    height: 180px !important;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  #search-bar input {
    width: 300px;
  }
  
  .layer-list,
  .filter-container,
  .bulk-update-container {
    min-width: 320px;
  }
}