.wp-menu-image.dashicons-before img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  margin-right: 6px;
}

#trellofix-feedback-button {
  position: fixed;
  bottom: 50px;
  right: -40px;
  padding: 10px 26px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
  transform: rotate(-90deg);
  /* Glassmorphic background */
  background: rgba(0, 0, 0, 0.652);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid #d4dcf5;
  /* Shadow for floating effect */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  /* Transition for smooth hover */
  transition: all 0.25s ease;
}

#trellofix-feedback-button:hover {
  transform: rotate(-90deg) scale(1.05);
}

#trellofix-screenshot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
#trellofix-screenshot-overlay .close-screenshot {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1004;
}

#trellofix-screenshot {
  border: 2px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  max-height: 90vh;
}

.trellofix-comment-box {
  font-family: "DM Sans", sans-serif !important;
  position: absolute;
  min-width: 400px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(180%) !important;
  /* Shadow */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1.5px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #333;
  z-index: 9999;
}
.trellofix-comment-box .close-comment {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #888;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.trellofix-comment-box textarea {
  outline: none !important;
  width: 100%;
  height: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.trellofix-comment-box textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
.trellofix-comment-box div {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}
.trellofix-comment-box button {
  padding: 8px 16px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #fff !important;
  cursor: pointer;
  margin-top: 8px;
  float: right;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  height: 40px !important;
  /* Glassmorphic style */
  background: #f53d02 !important;
  backdrop-filter: blur(10px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(180%) !important;
  /* Shadow */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  /* Transition */
  transition: all 0.25s ease;
}
.trellofix-comment-box button:hover {
  transform: scale(1.05);
}

.trellofix-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f5f5f5;
}
.trellofix-table th,
.trellofix-table td {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.trellofix-table .trellofix-screenshot-thumbnail {
  width: 60px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.trellofix-table td:nth-child(3) {
  font-weight: 600;
  color: #333;
}
.trellofix-table td a {
  color: #0073aa;
  font-size: 14px;
  text-decoration: none;
}

.trellofix-status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 12px;
}
.trellofix-status.status-open {
  background-color: #ff6f61;
}
.trellofix-status.status-resolved {
  background-color: #28a745;
}

.trellofix-date {
  font-size: 12px;
  color: #888;
}

.trellofix-action-button {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #ff6f61;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.trellofix-action-button:hover {
  opacity: 0.8;
}

#trellofix-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
#trellofix-modal .assigned-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0;
}
#trellofix-modal h4,
#trellofix-modal p {
  padding: 0;
  margin: 0;
}
#trellofix-modal #trellofix-modal-note .cta-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#trellofix-modal .estimation {
  margin: 12px 0;
}
#trellofix-modal #trellofix-modal-content {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 70%;
  background: #fff;
  border-radius: 8px;
  top: 10%;
}
#trellofix-modal #trellofix-modal-content #trellofix-modal-close {
  position: absolute;
  top: 0ch;
  right: 0px;
  color: #fe4848;
  font-weight: bold;
  cursor: pointer;
  z-index: 9;
  font-size: 27px;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}
#trellofix-modal #trellofix-modal-content #trellofix-modal-close:hover {
  opacity: 0.9;
}
#trellofix-modal #trellofix-modal-screenshot-container {
  position: relative;
  width: 100%;
}
#trellofix-modal #trellofix-modal-screenshot-container #trellofix-modal-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.note-marker {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.note-popup {
  position: absolute;
  z-index: 1001;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  max-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.trellofix-comment-box {
  display: grid;
}
.trellofix-comment-box textarea {
  width: auto !important;
}

.spinner {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-left-color: #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ==========================================
   Professional Annotation Toolbar
   ========================================== */
#trellofix-annotation-toolbar {
  position: fixed;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
#trellofix-annotation-toolbar .toolbar-separator {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}
#trellofix-annotation-toolbar .tool-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}
#trellofix-annotation-toolbar .tool-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}
#trellofix-annotation-toolbar .tool-btn.active {
  background: rgba(252, 252, 252, 0.17);
  color: white;
  transform: scale(1.05);
  border: none;
  border: 1px solid #d9d9d9;
}
#trellofix-annotation-toolbar .tool-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}
#trellofix-annotation-toolbar .size-selector {
  display: flex;
  align-items: center;
  gap: 4px;
}
#trellofix-annotation-toolbar .size-selector .size-btn {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}
#trellofix-annotation-toolbar .size-selector .size-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
#trellofix-annotation-toolbar .size-selector .size-btn.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
#trellofix-annotation-toolbar .color-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}
#trellofix-annotation-toolbar .color-selector .color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
#trellofix-annotation-toolbar .color-selector .color-btn:hover {
  transform: scale(1.1);
}
#trellofix-annotation-toolbar .color-selector .color-btn.active {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 2px #1a1a1a;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-red {
  background: #ef4444;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-orange {
  background: #f97316;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-yellow {
  background: #eab308;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-green {
  background: #22c55e;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-blue {
  background: #3b82f6;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-purple {
  background: #a855f7;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-pink {
  background: #ec4899;
}
#trellofix-annotation-toolbar .color-selector .color-btn.color-black {
  background: #000000;
}
#trellofix-annotation-toolbar .action-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
#trellofix-annotation-toolbar .action-buttons .action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#trellofix-annotation-toolbar .action-buttons .action-btn i {
  font-size: 18px;
  color: white;
}
#trellofix-annotation-toolbar .action-buttons .action-btn.undo {
  background: #fe7743;
}
#trellofix-annotation-toolbar .action-buttons .action-btn.undo:hover {
  background: #f57f50;
  transform: scale(1.05);
}
#trellofix-annotation-toolbar .action-buttons .action-btn.delete {
  background: #e52020;
}
#trellofix-annotation-toolbar .action-buttons .action-btn.delete:hover {
  background: rgb(244, 67, 54);
  transform: scale(1.05);
}
#trellofix-annotation-toolbar .action-buttons .action-btn.confirm {
  background: #5cb338;
}
#trellofix-annotation-toolbar .action-buttons .action-btn.confirm:hover {
  background: rgb(95, 178, 98);
  transform: scale(1.05);
}
#trellofix-annotation-toolbar .action-buttons .action-btn.confirm.sending svg {
  animation: spin 1s linear infinite;
  transform-origin: center;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */