.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.wrap .top {
  margin-bottom: 32px;
}

.cardissue {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  max-width: 100%;
}
.cardissue .left {
  max-width: 50%;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cardissue .left .issueID {
  margin-right: 15px;
  font-size: 12px;
  font-weight: bold;
  color: #667085;
}
.cardissue .left .screenshot {
  width: 100px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #f1f1f1;
}
.cardissue .left .cta-note h4 {
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #3a3f4a;
}
.cardissue .left .cta-note span {
  text-decoration: underline;
  color: rgb(76, 76, 112);
  cursor: pointer;
}
.cardissue .right {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cardissue .right .fix-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 16px 4px 4px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  background-color: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
  min-width: 125.7px;
  height: 35px;
}
.cardissue .right .fix-badge .fixperia-button {
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #fecdca;
  border-radius: 50px;
  cursor: pointer;
}
.cardissue .right .fix-badge h5 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #b42318;
  cursor: pointer;
}
.cardissue .right .assigned-user {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  padding: 4px 16px 4px 4px;
  border-radius: 4px;
}
.cardissue .right .assigned-user .assigned-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cardissue .right .assigned-user .assigned-user-info img {
  width: 36px;
  border-radius: 4px;
}

button.unassign-user-button {
  padding: 8px;
  background-color: #fff;
  border: 1px solid #fecdca;
  border-radius: 50px;
  cursor: pointer;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.actions .edit-icon,
.actions .delete-icon {
  font-size: 16px;
  cursor: pointer;
}
.actions .edit-icon {
  position: relative;
}
.actions .edit-icon .delete {
  display: none;
}
.actions .edit-icon .delete {
  position: absolute;
  right: -10px;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 8px 16px;
  border-radius: 4px;
}
.actions .day-ago {
  color: #667085;
  font-size: 14px;
  font-weight: 500;
  min-width: 110px;
}

#assign-user-modal-content {
  background: #fff;
  border: 1px solid #d9d9d9;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 25%;
  padding: 24px;
  border-radius: 8px;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#assign-user-modal-content span#assign-user-modal-close {
  font-size: 20px;
  position: absolute;
  right: 16px;
  top: 16px;
}
#assign-user-modal-content select#assign-user-select {
  width: 50%;
}
#assign-user-modal-content button#assign-user-button {
  background: none;
  width: 45%;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #fe4848;
  font-weight: 500;
}

#fixperia-feedback-button {
  position: fixed;
  bottom: 50px;
  right: -25px;
  background-color: #f53d02;
  color: #fff;
  padding: 8px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
  transform: rotate(-90deg);
}

#fixperia-feedback-button-record {
  position: fixed;
  bottom: 160px;
  right: -40px;
  background-color: #f53d02;
  color: #fff;
  padding: 8px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000;
  transform: rotate(-90deg);
}

#fixperia-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;
}
#fixperia-screenshot-overlay .close-screenshot {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1004;
}

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

.fixperia-comment-box {
  position: absolute;
  min-width: 220px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #333;
  z-index: 1003;
}
.fixperia-comment-box .close-comment {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #888;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.fixperia-comment-box textarea {
  width: 100%;
  height: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}
.fixperia-comment-box div {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}
.fixperia-comment-box button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-top: 8px;
}

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

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

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

.fixperia-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;
}
.fixperia-action-button:hover {
  opacity: 0.8;
}

#fixperia-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);
}
#fixperia-modal .assigned-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0;
}
#fixperia-modal h4,
#fixperia-modal p {
  padding: 0;
  margin: 0;
}
#fixperia-modal #fixperia-modal-note .cta-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#fixperia-modal .estimation {
  margin: 12px 0;
}
#fixperia-modal #fixperia-modal-content {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  max-width: 70%;
  background: #fff;
  border-radius: 8px;
  top: 10%;
}
#fixperia-modal #fixperia-modal-content #fixperia-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;
}
#fixperia-modal #fixperia-modal-content #fixperia-modal-close:hover {
  opacity: 0.9;
}
#fixperia-modal #fixperia-modal-screenshot-container {
  position: relative;
  width: 100%;
}
#fixperia-modal #fixperia-modal-screenshot-container #fixperia-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);
}

.fixperia-comment-box {
  display: grid;
}
.fixperia-comment-box .fixperia-comment-box textarea {
  width: 92% !important;
}/*# sourceMappingURL=style.css.map */