/* === DARK THEME & ENHANCEMENTS MERGED === */
.ticket-expanded-content {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  height: 624px;
}

.ticket-details-form {
  flex: 0 0 266px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  margin-left: 0.25rem;
}

.details-scroll-wrapper {
  flex: 1 1 0;
  overflow-y: auto;
  min-height: 0;
  height: 100%;
  max-height: 100%;
}

.ticket-details-footer {
  flex-shrink: 0;
  margin-top: auto;
  align-self: stretch;
  padding-top: 0.5rem;
}

.update-ticket-footer {
  flex-shrink: 0;
  margin-top: auto;
  align-self: stretch;
}

.update-ticket-footer button {
  width: 100%;
}

@media (max-width: 850px) {
  .ticket-details-form {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.ticket-details-form input,
.ticket-details-form select,
.ticket-details-form textarea {
  background-color: #f9f9f9;
  border: 1px solid #bbb;
  padding: 0.4rem;
  border-radius: 6px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
  transition: border-color 0.2s ease;
  width: 100%;
  align-self: flex-end;
  text-align: left;
  max-width: 100%;
  flex-shrink: 1;
}

/* Ensure textarea never exceeds its container width */
.ticket-details-form textarea {
  max-width: 100%;
  box-sizing: border-box;
}

.ticket-details-form input:focus,
.ticket-details-form select:focus,
.ticket-details-form textarea:focus {
  border-color: #1e1e2f;
  outline: none;
}

.ticket-details-form label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
  font-size: 0.88rem;
  text-align: left;
}

.ticket-details-form button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background-color: #1e1e2f;
  color: #fff;
  border: none;
  border: 2px solid black;
  border-radius: 5px;
  cursor: pointer;
  margin-top: auto;
  align-self: stretch;
}

.ticket-details-form button:hover {
  background-color: #33334d;
}

/* Comments area stretches fully across the right side of the expanded area */
.ticket-comments {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 624px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.comments-thread {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
  min-height: 0;
  padding: 0.5rem;
  border-right: 1px solid #ddd;
}

/* Removed .comment-scroll-anchor rule to avoid layout conflicts */

/* Ensure expanded ticket content fills table width and prevents clipping */
.ticket-expanded-content {
  width: 100%;
  box-sizing: border-box;
}

.ticket-expanded-content td,
.ticket-expanded-content th {
  box-sizing: border-box;
}

td[colspan] {
  width: 100vw;
  padding: 0 !important;
}
/* (Removed duplicate/old .ticket-comments and .ticket-expanded-content rules) */
/* Remove table cell limitations from expanded row */
#tickets-table td[colspan] {
  width: 100%;
  padding: 0 !important;
  margin: 0;
  box-sizing: border-box;
}

#tickets-table tr.ticket-details-row {
  display: table-row;
}

.ticket-expanded-content {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  height: 624px;
}

@media (max-width: 1100px) {
  .ticket-details-form > div {
    flex: 1 1 100%;
  }
}

@media (max-width: 850px) {
  .ticket-expanded-content {
    flex-direction: column;
    gap: 1rem;
  }

  .ticket-details-form {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ticket-comments {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ticket-details-form input,
  .ticket-details-form select,
  .ticket-details-form textarea {
    width: 100%;
  }
}
.update-ticket-btn {
  margin-top: auto;
  align-self: stretch;
  flex-shrink: 0;
}
.ticket {
  border: 1px solid #ccc;
  padding: 1rem;
  margin-bottom: 1rem;
}

.ticket h3 {
  margin-top: 0;
}

.ticket textarea,
.ticket input {
  width: 100%;
  margin-top: 0.5rem;
}

.comment p {
  margin: 0.3rem 0;
}

.ticket .group {
  margin-bottom: 0.5rem;
}

.ticket .group strong {
  display: inline-block;
  width: 150px;
}

#tickets-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#tickets-table th,
#tickets-table td {
  padding: 0.5rem;
  border: 1px solid #ccc;
  word-wrap: break-word;
}

/* New index column: narrow and right-aligned */
#tickets-table th:nth-child(1),
#tickets-table td:nth-child(1),
#tickets-table td.index-col {
  width: 48px;
  min-width: 44px;
  text-align: right;
  white-space: nowrap;
}

/* Table column width rules for #tickets-table (with index column first) */
/* 1: index (see rule above) */

#tickets-table th:nth-child(2),  /* Serial Number */
#tickets-table td:nth-child(2) {
  width: 16%;
}

#tickets-table th:nth-child(3),  /* Assignee */
#tickets-table td:nth-child(3) {
  width: 12%;
}

#tickets-table th:nth-child(4),  /* Category */
#tickets-table td:nth-child(4) {
  width: 12%;
}

#tickets-table th:nth-child(5),  /* Customer Name */
#tickets-table td:nth-child(5) {
  width: 16%;
}

#tickets-table th:nth-child(6),  /* Device Type */
#tickets-table td:nth-child(6) {
  width: 8%;
}

#tickets-table th:nth-child(7),
#tickets-table td:nth-child(7) {
  width: 16%; /* Warranty */
}

#tickets-table th:nth-child(8),  /* Created */
#tickets-table td:nth-child(8),
#tickets-table th:nth-child(9),  /* Updated */
#tickets-table td:nth-child(9) {
  width: 7%;
}

#tickets-table th:nth-child(10), /* Delete */
#tickets-table td:nth-child(10) {
  min-width: 80px;
  width: 80px;
  text-align: center;
}

/* Override orange border-bottom for all table headers */
#tickets-table th {
  border-bottom: 2px solid #333;
}

/* Specific override for Delete column header */
#tickets-table th:nth-child(10) {
  border-bottom: 1px solid #fff;
}

.comment-input {
  padding: 1rem;
  max-width: 100%;
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #fff;
}
#pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

#pagination button {
  background: #2a2a2a;
  color: #ff6b00;
  border: 1px solid #ff6b00;
}

#pagination button:hover:not(:disabled) {
  background: #ff6b00;
  color: #1a1a1a;
}

#pagination button:disabled {
  opacity: 0.5;
  border-color: #444;
  color: #666;
}
/* Style for centering the back-to-dashboard button */
.centered-button {
  text-align: center;
  margin-top: 2rem;
}
.manage-users-container {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.user-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-form input,
.user-form select,
.user-form button {
  padding: 0.5rem;
  font-size: 1rem;
  min-width: 250px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #999;
}

.form-response {
  margin-top: 1rem;
  font-weight: bold;
}

.form-response.success {
  color: green;
}

.form-response.error {
  color: red;
}
.admin-nav {
  display: flex;
  gap: 1rem;
  background-color: #252525;
  border-bottom: 1px solid #333;
  padding: 0.75rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  align-items: center;
}

.admin-nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.admin-nav a:hover {
  color: #ff6b00;
}

.admin-nav a.active {
  color: #ff6b00;
  font-weight: 600;
}
.table-container {
  padding: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
  width: 100%;
}

.table-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.admin-tab-buttons {
  margin-top: 1rem;
}

.admin-tab-buttons button {
  margin-right: 0.5rem;
}

.admin-tab-buttons button.active {
  background-color: #1e1e2f;
  color: white;
  font-weight: bold;
}
.page-container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.page-container h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.submit-ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.submit-ticket-form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.submit-ticket-form select,
.submit-ticket-form input,
.submit-ticket-form textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.submit-ticket-form button {
  align-self: flex-start;
  background-color: #1e1e2f;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-ticket-form button:hover {
  background-color: #33334d;
}

.submit-ticket-form button[type="submit"] {
  background: #2a2a2a;
  color: #ff6b00;
  border: 1px solid #ff6b00;
}

.submit-ticket-form button[type="submit"]:hover {
  background: #ff6b00;
  color: #1a1a1a;
  transform: translateY(-1px);
}

.hidden {
  display: none;
}

/* Submit Ticket: hide custom 'Other' input groups by default */
.other-input-group {
  display: none;
}

/* User Table Styles (match ticket dashboard table look) */
#usersTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  background: #252525;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

#usersTable th,
#usersTable td {
  padding: 0.6rem;
  border: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
  word-wrap: break-word;
  transition: background-color 0.3s ease;
}

#usersTable th {
  background-color: #1f1f1f;
  font-weight: 600;
  color: #ff6b00;
  border-bottom: 2px solid #ff6b00;
}

#usersTable button {
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  background-color: #1e1e2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#usersTable button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#usersTable th:nth-child(2),
#usersTable td:nth-child(2) {
  width: 28%; /* Email column — wider */
}

#usersTable th:nth-child(3),
#usersTable td:nth-child(3),
#usersTable th:nth-child(4),
#usersTable td:nth-child(4) {
  width: 10%; /* Role and Connected columns — narrower */
}

/* Ensure input fields in Manage Users table expand properly (only for email column, with .edit-email class) */
#usersTable td input.edit-email {
  width: 100%;
  min-width: 250px;
  box-sizing: border-box;
}

/* Ensure name inputs fill their column */
#usersTable td input.edit-name {
  width: 100%;
  min-width: 250px;
  box-sizing: border-box;
}
/* Category filter wrapper and select */
.filter-category-wrapper {
  display: inline-block;
  margin-right: 1rem;
}

.filter-category-select {
  min-width: 180px;
  max-width: 100%;
}
.back-to-dashboard {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #1e1e2f;
  text-decoration: none;
}

.back-to-dashboard:hover {
  text-decoration: underline;
  color: #007bff;
}

.search-go-btn {
  margin-left: 6px;
}

th.sortable {
  cursor: pointer;
}

.pagination-ellipsis {
  margin: 0 5px;
}

/* Responsive filter panel layout */
/* Responsive filter panel layout: two-column flexbox */
.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-column {
  display: contents;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.filter-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .filter-panel {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Utility: hide headings for screen-readers only */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
/* Date filter action buttons */
.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-end;
}
.filter-actions button {
  min-width: 92px;
}
@media (max-width: 600px) {
  .filter-actions {
    width: 100%;
  }
  .filter-actions button {
    flex: 1 1 48%;
  }
}
/* Category multi-select dropdown: Compact, aligned, scrollable */
#filter-category {
  height: 38px;
  padding: 4px 6px;
  font-size: 14px;
  box-sizing: border-box;
  width: 100%;
}

.filter-group select {
  height: 38px;
  padding: 4px 6px;
  font-size: 14px;
  box-sizing: border-box;
}
/* Choices.js styles for compact multi-select Category filter */
.choices__inner {
  min-height: 38px;
  padding: 6px 8px;
  font-size: 14px;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.choices__list--multiple {
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px 0;
}

.choices__item--selectable {
  background-color: #e8e8f0;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 13px;
}

.choices[data-type*="select-multiple"] .choices__button {
  margin-left: 6px;
  font-size: 13px;
}

.choices__list--dropdown {
  max-height: 200px;
  overflow-y: auto;
  font-size: 14px;
  box-sizing: border-box;
}

.choices__list--dropdown .choices__item {
  padding: 6px 10px;
}

.choices__list--dropdown .choices__item--highlighted {
  background-color: #f0f0f0;
}

.choices__list--dropdown.is-active {
  border: 1px solid #bbb;
  border-radius: 4px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-width: 300px;
  gap: 1rem;
  align-items: flex-end;
}

.filter-row .filter-actions {
  margin-left: 0; /* keep Apply/Clear near the date fields */
}

.filter-group select,
.filter-group input {
  max-width: 200px;
  width: auto;
  box-sizing: border-box;
}
/* Serial Number and Customer Name input widths */
#search-serial,
#search-customer {
  width: 100%;
  min-width: 240px;
  max-width: 100%;
}

/* Always enable horizontal scrolling for ticket table and prevent text wrapping */
.table-container {
  overflow-x: auto;
  width: 100%;
}

/* Responsive table width: full on large screens */
#tickets-table {
  width: 100%;
  table-layout: auto;            /* allow columns to flex */
  background: #252525;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

#tickets-table th,
#tickets-table td {
  white-space: normal;           /* allow wrapping */
  overflow-wrap: anywhere;       /* break long tokens (serials/underscores) */
  word-break: break-word;        /* fallback */
  vertical-align: top;
  min-width: 80px;
  transition: background-color 0.3s ease;
}

/* Provide comfortable min-widths for no-wrap columns */
#tickets-table th:nth-child(2),
#tickets-table td:nth-child(2) { /* Serial Number */
  min-width: 260px;
}

#tickets-table th:nth-child(7),
#tickets-table td:nth-child(7) { /* Warranty Info */
  min-width: 220px;
}

#tickets-table th {
  background: #1f1f1f;
  color: #ff6b00;
  font-weight: 600;
  border-bottom: 2px solid #333;
}

#tickets-table tbody tr:hover {
  background: #333;
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
  position: relative;
  z-index: 1;
}

body {
  background: #1a1a1a;
  color: #e0e0e0;
}

.admin-nav {
  background-color: #252525;
  border-bottom: 1px solid #333;
}

.admin-nav a {
  color: #e0e0e0;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.admin-nav a:hover {
  color: #ff6b00;
}

.admin-nav a.active {
  color: #ff6b00;
  font-weight: 600;
}

select,
button,
input,
textarea {
  background: #2a2a2a;
  color: #e0e0e0;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 8px 12px;
  transition: all 0.2s ease;
}

select:hover,
button:hover:not(:disabled) {
  border-color: #ff6b00;
}

select:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

/* === END DARK THEME ENHANCEMENTS === */

.delete-ticket-btn {
  background: #2a2a2a;
  border: none;
  color: #ff6b00;
  padding: 0.4rem 0.6rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.delete-ticket-btn:hover {
  background: #ff6b00;
  color: #1a1a1a;
}

/* Add spacing below ticket options form for better visibility */
#ticketOptionsForm {
  margin-bottom: 2rem;
}

/* Make the Save button brighter and clearer */
#saveOptionsBtn {
  background-color: #ff6b00;
  color: #1a1a1a;
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

#saveOptionsBtn:hover {
  background-color: #e65c00;
}
/* --- Keep Category column on one line at desktop sizes (Patch A) --- */
@media (min-width: 1100px) {
  /* Slightly widen Category and rebalance two wider columns */
  #tickets-table th:nth-child(4),  /* Category */
  #tickets-table td:nth-child(4) {
    width: 14%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;        /* do not break long words */
  }

  /* Nudge down widths to keep the table fitting without horizontal scroll */
  #tickets-table th:nth-child(5),  /* Customer Name */
  #tickets-table td:nth-child(5) {
    width: 15%;
  }

  #tickets-table th:nth-child(7),  /* Warranty Info */
  #tickets-table td:nth-child(7) {
    width: 15%;
  }
}

/* On narrow viewports, allow normal wrapping again for readability */
@media (max-width: 1099px) {
  #tickets-table th:nth-child(4),
  #tickets-table td:nth-child(4) {
    white-space: normal;         /* revert to allow wrapping on small screens */
    word-break: break-word;      /* match your existing behavior */
  }
}

/* --- Keep selected option labels from splitting in the left form (Step 2) --- */
@media (min-width: 1100px) {
  .ticket-details-form select {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* --- Normalize Warranty Info select width to match other fields --- */
/* Covers common id/name variants defensively without affecting others */
@media (min-width: 850px) {
  #ticket-warranty,
  #warrantyInfo,
  #warranty,
  select[name="warrantyInfo"],
  select[name="warranty_info"],
  select[name="warranty"] {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }
}

/* === Force full-width selects in the left Ticket Details form (desktop and up) === */
@media (min-width: 850px) {
  .ticket-details-form select {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }
}

/* === Keep Customer Name on one line at desktop, with ellipsis; revert on smaller screens === */
@media (min-width: 1100px) {
  #tickets-table th:nth-child(5),  /* Customer Name */
  #tickets-table td:nth-child(5) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
  }
}

@media (max-width: 1099px) {
  #tickets-table th:nth-child(5),
  #tickets-table td:nth-child(5) {
    white-space: normal;
    word-break: break-word;
  }
}
/* === Cross‑browser select normalization (Safari/Chrome/Windows/Mac) === */
/* Makes selects look and size consistently; keep within desktop-ish breakpoints */
@media (min-width: 850px) {
  .ticket-details-form select {
    -webkit-appearance: none; /* Safari */
    appearance: none;         /* Modern browsers */
    min-height: 38px;         /* allow browser to size text without clipping */
    line-height: normal;      /* fix vertical text clipping */
    padding: 8px 2rem 8px 12px; /* room for custom arrow, consistent padding */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23e0e0e0' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 7px;
    overflow: visible;        /* avoid internal clipping */
  }

  /* High-contrast hover/focus states stay intact from existing theme */
  .ticket-details-form select:hover {
    border-color: #ff6b00;
  }
}

/* Fallback: ensure the arrow does not clash on very small screens */
@media (max-width: 849px) {
  .ticket-details-form select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 1.6rem;
  }
}
/* === Ticket Details page: sidebar controls full-width + consistent (scoped) === */
@media (min-width: 850px) {
  /* Make inputs/selects/textarea in ticket sidebar fill the available width */
  #ticket-sidebar .group select,
  #ticket-sidebar .group input,
  #ticket-sidebar .group textarea {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
  }

  /* Specific catch for Warranty select common ids/names */
  #ticket-sidebar #edit-warranty,
  #ticket-sidebar #warranty,
  #ticket-sidebar select[name="warranty"],
  #ticket-sidebar select[name="warrantyInfo"],
  #ticket-sidebar select[name="warranty_info"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Normalize select appearance only within the ticket sidebar to match inputs */
@media (min-width: 850px) {
  #ticket-sidebar select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 38px;
    line-height: normal;           /* prevent vertical clipping */
    padding: 8px 2rem 8px 12px;    /* space for arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23e0e0e0' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 7px;
    overflow: visible;
  }
}

/* Improve option readability across platforms */
#ticket-sidebar select option,
.ticket-details-form select option {
  line-height: 1.4;     /* affects dropdown list items */
}

.is-hidden,
[hidden] {
  display: none !important;
}

.ticket-row {
  cursor: pointer;
}

.edit-control-group {
  margin-top: 10px;
}

.edit-control-row {
  margin-top: 6px;
}

.edit-compact-select {
  margin-left: 8px;
  max-width: 250px;
}

.clipboard-proxy {
  position: fixed;
  left: -9999px;
  top: 0;
}
