:root {
  --primary-blue: #4a90e2;
  --secondary-blue: #357abd;
  --text-white: #ffffff;
  --text-light-gray: #a0aec0;
  --text-gray: #718096;
  --quantum-primary: #00f0ff;
}

.user-page {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f29 100%);
  min-height: 100vh;
  color: var(--text-white);
}

.user-header {
  background: rgba(30, 35, 45, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info span {
  color: var(--text-light-gray);
}

.btn-logout {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-admin {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
}

.btn-admin:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

.user-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.notice-banner {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 2rem;
  color: var(--text-light-gray);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
}

/* 滚动公告样式 - 基本容器 */
.announcement-container {
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 60px;
  display: flex;
  align-items: center;
}

.announcement-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announcement-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-content .notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.announcement-icon {
  color: #ffc107;
  font-weight: bold;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

.notice-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
  animation: quantum-shine 3s linear infinite;
}

@keyframes quantum-shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.title-with-count {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.activity-count-inline {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.activity-count {
  color: var(--primary-blue);
  font-weight: 600;
}

.activity-count-after {
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: 1rem;
  text-align: right;
}

.activities-container {
  background: rgba(30, 35, 45, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  min-height: 300px;
}

.activities-container .table-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(2px);
  display: none;
}

.activities-container.loading .table-loading-overlay {
  display: flex;
}

.activities-container .table-loading-overlay .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(74, 144, 226, 0.2);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 16px;
}

.activities-container .table-loading-overlay .table-loading-text {
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.activities-table {
  width: 100%;
  border-collapse: collapse;
}

.activities-table thead {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.activities-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.activities-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.activities-table tbody tr:hover {
  background: rgba(74, 144, 226, 0.05);
}

.activities-table tbody tr:last-child {
  border-bottom: none;
}

.activities-table td {
  padding: 1rem;
  color: var(--text-light-gray);
}

.activities-table .activity-title {
  color: var(--quantum-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.activities-table .activity-title:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.activities-table .activity-title a {
  color: var(--quantum-primary);
  text-decoration: none;
}

.activities-table .activity-title a:hover {
  text-decoration: none;
}

.activities-table td.loading,
.activities-table td.error {
  text-align: center;
  color: var(--text-light-gray);
}

.btn-start {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.activities-table .btn-start {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.activities-table .btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.action-cell {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-official {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-official:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ef4444;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  opacity: 1;
  transition: opacity 0.3s ease;
  min-width: 300px;
  max-width: 500px;
}

.notification.success {
  background: #10b981;
}

.notification.warning {
  background: #f59e0b;
}

.notification.hidden {
  opacity: 0;
  pointer-events: none;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(30, 35, 45, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-info {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light-gray);
  line-height: 1.5;
}

.pagination-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

#pageNumbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background-color: rgba(30, 35, 45, 0.8);
  color: var(--text-white);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

.pagination-btn:hover {
  background-color: rgba(74, 144, 226, 0.3);
}

.pagination-btn:active {
  background-color: rgba(30, 35, 45, 0.8);
}

.pagination-btn.active {
  background-color: var(--primary-blue);
  color: var(--text-white);
  border-color: var(--primary-blue);
}

.pagination-btn.active:hover {
  background-color: #2563eb;
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  color: var(--text-gray);
  background-color: rgba(30, 35, 45, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.pagination-btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.pagination-ellipsis {
  color: var(--text-gray);
  padding: 6px 4px;
}

.feedback-detail-container {
  background: rgba(30, 35, 45, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(74, 144, 226, 0.1);
  overflow: visible;
  margin-bottom: 2rem;
}

.feedback-detail-body {
  padding: 1.5rem;
  overflow: visible;
  height: auto;
  min-height: 200px;
}

.feedback-detail-header {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.feedback-detail-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 1rem 0;
}

.feedback-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feedback-activity {
  color: var(--text-light-gray);
  font-weight: normal;
}

.activity-name-value {
  color: var(--quantum-primary);
  font-weight: 600;
}

.feedback-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feedback-status.status-resolved {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.feedback-status.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.feedback-time {
  color: var(--text-light-gray);
}

.feedback-content,
.feedback-replies {
  margin-bottom: 2rem;
}

.feedback-content h4,
.feedback-replies h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-body {
  background: rgba(30, 35, 45, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: var(--text-light-gray);
  line-height: 1.6;
  overflow: visible;
  max-height: none;
}

.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0.5rem 0;
}

.content-body p {
  margin: 0.5rem 0;
}

.content-body a {
  color: var(--primary-blue);
  text-decoration: none;
}

.content-body a:hover {
  text-decoration: underline;
}

.reply-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0.5rem 0;
}

.reply-content p {
  margin: 0.5rem 0;
}

.reply-content a {
  color: var(--primary-blue);
  text-decoration: none;
}

.reply-content a:hover {
  text-decoration: underline;
}

.reply-item {
  background: rgba(30, 35, 45, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.reply-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.reply-admin {
  color: var(--quantum-primary);
  font-weight: 600;
}

.reply-time {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.reply-content {
  color: var(--text-light-gray);
  line-height: 1.6;
}

.no-replies {
  color: var(--text-gray);
  text-align: center;
  padding: 2rem;
  background: rgba(30, 35, 45, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.1);
  border-radius: 8px;
}

@media (max-width: 768px) {
  .user-header {
    padding: 1rem;
  }

  .logo-section h1 {
    font-size: 1.2rem;
  }

  .user-main {
    padding: 1rem;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .activities-table {
    font-size: 0.85rem;
  }

  .activities-table th,
  .activities-table td {
    padding: 0.75rem 0.5rem;
  }

  .pagination {
    flex-direction: column;
    gap: 12px;
  }

  .pagination-info {
    text-align: center;
  }

  .pagination-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .pagination-btn {
    padding: 8px 10px;
    font-size: 13px;
  }

  .feedback-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .feedback-detail-header,
  .feedback-detail-body {
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-info {
    flex-direction: column;
    gap: 5px;
  }

  .footer-info span {
    margin-left: 0 !important;
  }
}

.footer {
  background: rgba(30, 35, 45, 0.95);
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-info span {
  color: var(--text-light-gray);
  font-size: 0.9rem;
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 0.85rem;
  text-align: center;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-badge.status-resolved {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.status-badge.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* 活动状态徽章 */
.activity-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.activity-status-badge.status-active {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.activity-status-badge.status-inactive {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* 意见反馈弹窗 */
.feedback-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.feedback-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-modal-content {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: feedbackModalIn 0.3s ease;
}

@keyframes feedbackModalIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feedback-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.feedback-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
}

.feedback-modal-close {
  color: var(--text-gray);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.feedback-modal-close:hover {
  color: var(--text-white);
}

.feedback-modal-body {
  padding: 24px;
}

.feedback-form-group {
  margin-bottom: 20px;
}

.feedback-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light-gray);
  margin-bottom: 8px;
}

.feedback-form-group label .required {
  color: #ef4444;
}

.feedback-form-group input,
.feedback-form-group select,
.feedback-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 8px;
  color: var(--text-white);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.feedback-form-group input::placeholder,
.feedback-form-group textarea::placeholder {
  color: rgba(113, 128, 150, 0.7);
}

.feedback-form-group input:focus,
.feedback-form-group select:focus,
.feedback-form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.feedback-form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.feedback-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0aec0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.feedback-form-group select option {
  background-color: #1e293b;
  color: var(--text-white);
}

.feedback-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.feedback-form-actions .btn-cancel {
  padding: 10px 24px;
  background: rgba(51, 65, 85, 0.8);
  border: 1px solid rgba(74, 144, 226, 0.2);
  border-radius: 8px;
  color: var(--text-light-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback-form-actions .btn-cancel:hover {
  background: rgba(71, 85, 105, 0.8);
  color: var(--text-white);
}

.feedback-form-actions .btn-submit {
  padding: 10px 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback-form-actions .btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.feedback-form-actions .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Quill 编辑器主题覆盖 */
.ql-toolbar.ql-snow {
  border: 1px solid rgba(74, 144, 226, 0.2) !important;
  border-radius: 8px 8px 0 0 !important;
  background: rgba(15, 23, 42, 0.6) !important;
}

.ql-container.ql-snow {
  border: 1px solid rgba(74, 144, 226, 0.2) !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  min-height: 160px;
  max-height: 400px;
}

.ql-editor {
  min-height: 160px;
  color: var(--text-white, #fff) !important;
  line-height: 1.6 !important;
  padding: 12px 14px !important;
}

.ql-editor.ql-blank::before {
  color: rgba(113, 128, 150, 0.6) !important;
  font-style: normal !important;
}

.ql-editor:focus {
  outline: none !important;
}

.ql-container.ql-snow:focus-within {
  border-color: var(--primary-blue, #4a90e2) !important;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.ql-toolbar.ql-snow .ql-stroke {
  stroke: var(--text-light-gray, #a0aec0) !important;
}

.ql-toolbar.ql-snow .ql-fill {
  fill: var(--text-light-gray, #a0aec0) !important;
}

.ql-toolbar.ql-snow .ql-picker-label {
  color: var(--text-light-gray, #a0aec0) !important;
}

.ql-toolbar.ql-snow .ql-picker-options {
  background: #1e293b !important;
  border-color: rgba(74, 144, 226, 0.2) !important;
  border-radius: 6px !important;
}

.ql-toolbar.ql-snow .ql-picker-item {
  color: var(--text-light-gray, #a0aec0) !important;
}

.ql-toolbar.ql-snow .ql-picker-item:hover {
  color: var(--text-white, #fff) !important;
}

.ql-toolbar.ql-snow button:hover .ql-stroke,
.ql-toolbar.ql-snow .ql-active .ql-stroke {
  stroke: var(--primary-blue, #4a90e2) !important;
}

.ql-toolbar.ql-snow button:hover .ql-fill,
.ql-toolbar.ql-snow .ql-active .ql-fill {
  fill: var(--primary-blue, #4a90e2) !important;
}

.ql-toolbar.ql-snow button {
  color: var(--text-light-gray, #a0aec0) !important;
}

.ql-toolbar.ql-snow button:hover {
  color: var(--text-white, #fff) !important;
}

.ql-editor img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 8px 0;
  display: block;
}

.ql-tooltip {
  background: #1e293b !important;
  border-color: rgba(74, 144, 226, 0.3) !important;
  color: var(--text-white, #fff) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  border-radius: 6px !important;
}

.ql-tooltip input[type=text] {
  background: rgba(15, 23, 42, 0.8) !important;
  border-color: rgba(74, 144, 226, 0.2) !important;
  color: var(--text-white, #fff) !important;
  border-radius: 4px !important;
}

.ql-tooltip a {
  color: var(--primary-blue, #4a90e2) !important;
}