/* Cyber Theme Styles - Acid Graphics + Terminal/Brutalism */
/* 创建时间: 2025-01-12 */

/* 自定义滚动条 - 美化深色主题滚动条 */
.cyber-scroll::-webkit-scrollbar {
  width: 8px;
}

.cyber-scroll::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.5);
  border-radius: 4px;
}

.cyber-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.6) 0%, rgba(158, 254, 255, 0.6) 100%);
  border-radius: 4px;
  border: 2px solid rgba(10, 10, 10, 0.5);
  transition: all 0.2s ease;
}

.cyber-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.9) 0%, rgba(158, 254, 255, 0.9) 100%);
  border-color: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.4);
}

/* 全局滚动条样式（深色主题） */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.6) 0%, rgba(158, 254, 255, 0.6) 100%);
  border-radius: 4px;
  border: 2px solid rgba(10, 10, 10, 0.5);
  transition: all 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.9) 0%, rgba(158, 254, 255, 0.9) 100%);
  border-color: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.4);
}

/* Firefox 滚动条（深色主题） */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(204, 255, 0, 0.6) rgba(10, 10, 10, 0.5);
}

/* 噪点背景 - 已禁用 */
.noise-layer {
  display: none;
}

/* 自定义光标 */
.cyber-cursor {
  width: 12px;
  height: 12px;
  background: #CCFF00;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* 输入框样式 */
.cyber-input {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
  outline: none;
}

.cyber-input:focus {
  border-color: #CCFF00;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
  background: rgba(0, 0, 0, 0.9);
}

.cyber-input::placeholder {
  color: #666;
}

.cyber-input-group {
  position: relative;
}

.cyber-input-group:focus-within .cyber-input {
  border-color: #CCFF00;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
}

/* 按钮样式 */
.cyber-button {
  background: #CCFF00;
  color: #000;
  border: 1px solid #CCFF00;
  padding: 12px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}

.cyber-button:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
  transform: scale(1.02);
}

.cyber-button:active {
  transform: scale(0.98);
}

.cyber-button-small {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

.cyber-button-small:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #CCFF00;
  color: #CCFF00;
}

/* Toast提示 */
.cyber-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(112, 0, 255, 0.9);
  border: 1px solid #7000FF;
  padding: 16px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
}

.cyber-toast.hidden {
  display: none;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 模态框样式 */
.cyber-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cyber-modal.hidden {
  display: none;
}

.cyber-modal-content {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
}

.cyber-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.cyber-modal-close:hover {
  color: #CCFF00;
  transform: rotate(90deg);
}

.cyber-modal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #CCFF00;
}

/* 表单样式 */
.cyber-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cyber-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cyber-form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
}

.cyber-form-group small {
  font-size: 11px;
  color: #666;
  font-style: italic;
}

.cyber-form-warning {
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid rgba(204, 255, 0, 0.3);
  padding: 12px;
  font-size: 12px;
  color: #CCFF00;
  font-family: 'JetBrains Mono', monospace;
}

.cyber-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.cyber-form-actions .cyber-button {
  flex: 1;
}

/* Cancel按钮样式 - 更亮的颜色 */
.cyber-button-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}

.cyber-button-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Send按钮 - 输入时高亮 */
.cyber-send-button {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}

.cyber-send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 当输入框有内容时，send按钮高亮 - 通过JavaScript动态添加has-text类 */
.cyber-send-button.has-text {
  background: #CCFF00 !important;
  color: #000 !important;
  border-color: #CCFF00 !important;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.3) !important;
}

/* 二维码容器 */
.cyber-qr-code {
  display: flex;
  justify-content: center;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cyber-share-link {
  display: flex;
  gap: 12px;
}

.cyber-share-link .cyber-input {
  flex: 1;
}

/* 搜索面板 */
.cyber-search-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 900;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cyber-search-panel.hidden {
  display: none;
}

.cyber-search-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cyber-search-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cyber-search-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.cyber-search-input-group .cyber-input {
  flex: 1;
}

.cyber-search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cyber-search-result-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.cyber-search-result-item:hover {
  background: rgba(204, 255, 0, 0.1);
  border-color: #CCFF00;
  transform: translateX(4px);
}

.cyber-search-result-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 11px;
}

.cyber-search-result-author {
  color: #CCFF00;
  font-weight: 700;
}

.cyber-search-result-preview {
  color: #999;
  font-size: 11px;
  line-height: 1.4;
}

.cyber-search-result-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

/* 消息样式 */
.cyber-message {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  animation: messageSlideIn 0.4s ease-out;
}

.cyber-message.my-message {
  flex-direction: row-reverse;
}

.cyber-message-avatar {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
}

.cyber-message-avatar::before {
  display: none;
}

.cyber-message-avatar::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #CCFF00;
}

.cyber-message.my-message .cyber-message-avatar::after {
  background: #7000FF;
}

.cyber-message-content {
  flex: 1;
  max-width: 70%;
}

.cyber-message-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.6;
}

.cyber-message-nickname {
  font-weight: 700;
  color: #CCFF00;
}

.cyber-message.my-message .cyber-message-nickname {
  color: #7000FF;
}

.cyber-message-time {
  color: #666;
}

.cyber-message-body {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  position: relative;
  backdrop-filter: blur(8px);
}

.cyber-message.my-message .cyber-message-body {
  background: rgba(112, 0, 255, 0.2);
  border-color: rgba(112, 0, 255, 0.5);
}

.cyber-message-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.cyber-message-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.cyber-message-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: #fff;
}

.cyber-message-reply {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: #666;
  font-style: italic;
}

.cyber-message-reply-author {
  color: #CCFF00;
  font-weight: 700;
}

.cyber-message.highlighted .cyber-message-body {
  border-color: #CCFF00;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.15);
}

.cyber-message.sending {
  opacity: 0.6;
}

.cyber-message.search-hit {
  animation: searchHighlight 1s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes searchHighlight {

  0%,
  100% {
    background: transparent;
  }

  50% {
    background: rgba(204, 255, 0, 0.2);
  }
}

/* 用户列表项 */
.cyber-user-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition: all 0.3s;
}

.cyber-user-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(204, 255, 0, 0.3);
}

.cyber-user-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  font-size: 10px;
  font-weight: 700;
}

/* 响应式 */
@media (max-width: 768px) {
  .cyber-search-panel {
    width: 100%;
  }

  .cyber-modal-content {
    padding: 20px;
  }

  .cyber-message-content {
    max-width: 85%;
  }

  /* 修复移动端视口高度问题 */
  html,
  body {
    height: 100%;
    height: 100dvh;
    /* 使用动态视口高度，考虑虚拟键盘 */
    overflow: hidden;
    position: fixed;
    width: 100%;
    touch-action: pan-y;
    /* 允许垂直滚动 */
  }

  /* 修复登录页面居中问题 */
  #login-overlay:not([style*="display: none"]) {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    min-height: 100dvh;
  }

  #login-overlay>div {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  #login-overlay .relative {
    padding: 1.5rem !important;
    /* 减少移动端内边距 */
  }

  /* 修复登录页面表单布局 */
  #login-overlay .grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* 修复密码模态框居中 */
  #passwordModal:not(.hidden) {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    min-height: 100dvh;
  }

  #passwordModal>div {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  #passwordModal .relative {
    padding: 1.5rem !important;
    /* 减少移动端内边距 */
  }

  /* 修复预填模态框居中 */
  #prefillJoinModal:not(.hidden) {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    min-height: 100dvh;
  }

  #prefillJoinModal>div {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  #prefillJoinModal .relative {
    padding: 1.5rem !important;
    /* 减少移动端内边距 */
  }

  /* 修复主界面布局 - 固定顶部菜单栏 */
  #main-interface {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  #main-interface>section {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  /* 固定顶部状态栏 */
  #main-interface header {
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
  }

  /* 修复消息容器 - 可滚动 */
  #messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
    /* 为底部输入框留出空间 */
    min-height: 0;
    /* 允许flex子元素缩小 */
  }

  /* 固定底部输入框 */
  #main-interface>section>div:last-child {
    position: sticky;
    bottom: 0;
    z-index: 100;
    flex-shrink: 0;
    background: rgba(5, 5, 5, 0.3);
    /* 使用半透明背景，与整体背景融合，不再显示明显的黑色条 */
    backdrop-filter: blur(10px);
    padding-bottom: env(safe-area-inset-bottom, 0);
    /* 适配iPhone底部安全区域 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* 修复回复栏 */
  #reply-bar {
    position: sticky;
    bottom: 0;
    z-index: 99;
    flex-shrink: 0;
  }

  /* 当回复栏显示时，调整输入框位置 */
  #reply-bar:not(.hidden)+div {
    transform: translateY(-40px);
    /* 回复栏高度 */
  }

  /* 修复虚拟键盘弹出时的布局 */
  @supports (-webkit-touch-callout: none) {

    /* iOS Safari */
    #main-interface {
      height: -webkit-fill-available;
    }

    /* 当输入框聚焦时，确保消息区域可以滚动 */
    #messageInput:focus~*,
    #messageInput:focus {
      scroll-margin-bottom: 200px;
    }
  }

  /* 防止输入框聚焦时页面被推上去 */
  #messageInput:focus {
    scroll-margin: 0;
  }

  /* 优化输入框在移动端的显示 */
  #messageForm {
    max-width: 100%;
  }

  /* 确保模态框在移动端可以滚动 */
  .cyber-modal {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cyber-modal>div {
    margin-top: auto;
    margin-bottom: auto;
  }
}

/* 项目链接样式 */
.cyber-project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9efeff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

.cyber-project-link::after {
  content: "↗";
  font-size: 12px;
}

.cyber-project-link:hover {
  color: #CCFF00;
}

/* 工具类 */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== 投票相关样式 ==================== */

/* 投票消息容器 */
.poll-message {
  background: transparent;
  border: none;
}

.poll-container {
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(204, 255, 0, 0.1);
}

.poll-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #CCFF00;
  margin-bottom: 8px;
}

.poll-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
  color: #999;
  font-family: 'JetBrains Mono', monospace;
}

.poll-total-votes {
  color: #CCFF00;
}

.poll-expired {
  color: #ff4444;
}

/* 投票选项容器 */
.poll-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poll-option {
  position: relative;
  padding: 10px 12px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.poll-option:hover:not(.poll-option-disabled) {
  border-color: rgba(204, 255, 0, 0.5);
  background: rgba(204, 255, 0, 0.05);
  transform: translateX(2px);
}

.poll-option-voted {
  border-color: rgba(204, 255, 0, 0.6);
  background: rgba(204, 255, 0, 0.1);
}

.poll-option-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.poll-option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.poll-option-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #fff;
  flex: 1;
}

.poll-option-stats {
  display: flex;
  gap: 8px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: #999;
}

.poll-option-count {
  color: #CCFF00;
}

.poll-option-percent {
  color: #9efeff;
}

/* 投票进度条 */
.poll-option-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.poll-option-progress {
  height: 100%;
  background: linear-gradient(90deg, #CCFF00, #9efeff);
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(204, 255, 0, 0.5);
}

/* 创建投票模态框样式 */
.poll-options-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.poll-option-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.poll-option-input {
  flex: 1;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #fff;
  transition: all 0.3s;
  outline: none;
}

.poll-option-input:focus {
  border-color: rgba(204, 255, 0, 0.5);
  background: rgba(10, 10, 10, 0.9);
}

.poll-option-remove-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 68, 68, 0.2);
  border: 1px solid rgba(255, 68, 68, 0.4);
  color: #ff4444;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
}

.poll-option-remove-btn:hover:not(:disabled) {
  background: rgba(255, 68, 68, 0.3);
  border-color: rgba(255, 68, 68, 0.6);
  transform: scale(1.1);
}

.poll-option-remove-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}