.pdf-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #006265);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}

.pdf-action:hover {
  transform: translateY(-2px);
}

.pdf-action .icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-action .label {
  font-weight: 600;
  font-size: 15px;
}

.pdf-action .sub {
  font-size: 12px;
  opacity: 0.85;
}

.download-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.menu-list {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.menu-list.show {
  display: block;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #333;
  cursor: pointer;
  font-size: 14px;
}

.menu-item:hover {
  background-color: #f0f0f0;
}

.pdf-preview {
  display: none;
  margin-top: 16px;
}

.pdf-preview.show {
  display: block;
}

.modal {
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.3);
}

/* ////////////////////////////////////////////////////////// */
.modern-modal {
  border-radius: 1rem;
  background: #fdfdfd;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem 2rem;
  transition: all 0.3s ease;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

.modal-sub {
  color: #666;
  font-size: 0.95rem;
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.95rem;
  outline: none;
  background: #fafafa;
  color: #333;
  transition: all 0.2s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #007bff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.error-message {
  font-size: 0.85rem;
  color: #d9534f;
  margin-top: 4px;
  display: none;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.star-rating span.active {
  color: #f7c531;
  transform: scale(1.1);
}

.star-rating span:hover {
  color: #ffd966;
  transform: scale(1.1);
}

.star-label {
  color: #333;
  font-weight: 500;
  min-height: 20px;
}

.btn-submit {
  background-color: #006365;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0069d9, #004bb5);
  transform: translateY(-2px);
}

#feedback-status {
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

#feedback-status.success {
  color: #28a745;
  display: block;
}

#feedback-status.error {
  color: #dc3545;
  display: block;
}

@media (max-width: 576px) {
  .modal-card {
    padding: 10px;
  }

  .star-rating {
    font-size: 1.7rem;
  }

  .btn-submit {
    width: 100%;
  }
}
