
.base-widget[data-v-de074c5d] {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.widget-header[data-v-de074c5d] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 40px;
}
.widget-title[data-v-de074c5d] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ee3f4d;
}
.widget-icon[data-v-de074c5d] {
  font-size: 16px;
}
.widget-actions[data-v-de074c5d] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.remove-btn[data-v-de074c5d] {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remove-btn[data-v-de074c5d]:hover {
  background: rgba(220, 53, 69, 0.4);
  transform: scale(1.1);
}
.widget-content[data-v-de074c5d] {
  flex: 1;
  padding: 12px;
  overflow: auto;
  position: relative;
}
.widget-content.is-loading[data-v-de074c5d] {
  pointer-events: none;
}
.loading-overlay[data-v-de074c5d] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.spinner[data-v-de074c5d] {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ee3f4d;
  border-radius: 50%;
  animation: spin-de074c5d 0.8s linear infinite;
}
@keyframes spin-de074c5d {
to {
    transform: rotate(360deg);
}
}
.widget-footer[data-v-de074c5d] {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.widget-header[data-v-de074c5d] {
    padding: 6px 10px;
}
.widget-title[data-v-de074c5d] {
    font-size: 13px;
}
.widget-content[data-v-de074c5d] {
    padding: 10px;
}
.remove-btn[data-v-de074c5d] {
    width: 28px;
    height: 28px;
    font-size: 20px;
}
}

.terminal-widget[data-v-c3d37aa6] {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 13px;
}
.terminal-output[data-v-c3d37aa6] {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 8px;
}
.terminal-line[data-v-c3d37aa6] {
  margin-bottom: 2px;
  color: #f1f1f1;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-input-line[data-v-c3d37aa6] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.prompt[data-v-c3d37aa6] {
  color: #28a745;
  font-weight: bold;
}
.terminal-input[data-v-c3d37aa6] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f1f1f1;
  font-family: inherit;
  font-size: inherit;
}
.terminal-input[data-v-c3d37aa6]::placeholder {
  color: #666;
}

/* Custom scrollbar */
.terminal-output[data-v-c3d37aa6]::-webkit-scrollbar {
  width: 6px;
}
.terminal-output[data-v-c3d37aa6]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.terminal-output[data-v-c3d37aa6]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.terminal-output[data-v-c3d37aa6]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
.terminal-widget[data-v-c3d37aa6] {
    font-size: 12px;
}
}

.news-widget[data-v-e160b0f7] {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.source-tabs[data-v-e160b0f7] {
  display: flex;
  gap: 4px;
  padding: 8px;
  overflow-x: auto;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.source-tab[data-v-e160b0f7] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.source-tab[data-v-e160b0f7]:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
}
.source-tab.active[data-v-e160b0f7] {
  background: #00ff9d;
  border-color: #00ff9d;
  color: #0f1014;
  font-weight: bold;
}
.state-message[data-v-e160b0f7] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #666;
  font-size: 12px;
}
.state-message.error[data-v-e160b0f7] {
  color: #ff5555;
}
.news-list[data-v-e160b0f7] {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.news-item[data-v-e160b0f7] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 6px;
  transition: all 0.2s;
}
.news-item[data-v-e160b0f7]:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 255, 157, 0.3);
}
.news-rank[data-v-e160b0f7] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #00ff9d;
}
.news-content[data-v-e160b0f7] {
  flex: 1;
  min-width: 0;
}
.news-title[data-v-e160b0f7] {
  font-size: 13px;
  color: #e0e0e0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-hot[data-v-e160b0f7] {
  margin-top: 4px;
  font-size: 11px;
  color: #ff9500;
}

/* Scrollbar */
.news-list[data-v-e160b0f7]::-webkit-scrollbar {
  width: 4px;
}
.news-list[data-v-e160b0f7]::-webkit-scrollbar-track {
  background: transparent;
}
.news-list[data-v-e160b0f7]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.news-list[data-v-e160b0f7]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.todo-widget[data-v-d11c46f0] {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 12px;
}
.todo-input-container[data-v-d11c46f0] {
  display: flex;
  gap: 8px;
}
.todo-input[data-v-d11c46f0] {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 12px;
  color: #f1f1f1;
  font-size: 13px;
  outline: none;
  transition: all 0.3s ease;
}
.todo-input[data-v-d11c46f0]:focus {
  border-color: rgba(238, 63, 77, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.todo-input[data-v-d11c46f0]::placeholder {
  color: #666;
}
.add-btn[data-v-d11c46f0] {
  background: rgba(238, 63, 77, 0.2);
  color: #ee3f4d;
  border: 1px solid rgba(238, 63, 77, 0.3);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-btn[data-v-d11c46f0]:hover:not(:disabled) {
  background: rgba(238, 63, 77, 0.3);
  transform: scale(1.05);
}
.add-btn[data-v-d11c46f0]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.todo-list[data-v-d11c46f0] {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.empty-state[data-v-d11c46f0] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 13px;
}
.todo-item[data-v-d11c46f0] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.todo-item[data-v-d11c46f0]:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.todo-item.completed[data-v-d11c46f0] {
  opacity: 0.6;
}
.todo-checkbox[data-v-d11c46f0] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ee3f4d;
}
.todo-text[data-v-d11c46f0] {
  flex: 1;
  font-size: 13px;
  color: #f1f1f1;
  word-break: break-word;
}
.todo-item.completed .todo-text[data-v-d11c46f0] {
  text-decoration: line-through;
  color: #888;
}
.delete-btn[data-v-d11c46f0] {
  flex-shrink: 0;
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-btn[data-v-d11c46f0]:hover {
  background: rgba(220, 53, 69, 0.4);
  transform: scale(1.1);
}

/* Custom scrollbar */
.todo-list[data-v-d11c46f0]::-webkit-scrollbar {
  width: 6px;
}
.todo-list[data-v-d11c46f0]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.todo-list[data-v-d11c46f0]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.todo-list[data-v-d11c46f0]::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
.todo-input[data-v-d11c46f0] {
    font-size: 12px;
    padding: 6px 10px;
}
.add-btn[data-v-d11c46f0] {
    width: 32px;
    height: 32px;
}
.todo-item[data-v-d11c46f0] {
    padding: 8px 10px;
}
.todo-text[data-v-d11c46f0] {
    font-size: 12px;
}
}

.search-widget[data-v-50704305] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.search-input-container[data-v-50704305] {
  display: flex;
  gap: 8px;
}
.search-input[data-v-50704305] {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #f1f1f1;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.search-input[data-v-50704305]:focus {
  border-color: rgba(238, 63, 77, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.search-input[data-v-50704305]::placeholder {
  color: #666;
}
.search-btn[data-v-50704305] {
  background: rgba(238, 63, 77, 0.2);
  color: #ee3f4d;
  border: 1px solid rgba(238, 63, 77, 0.3);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn[data-v-50704305]:hover:not(:disabled) {
  background: rgba(238, 63, 77, 0.3);
  transform: scale(1.05);
}
.search-btn[data-v-50704305]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.search-engines[data-v-50704305] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.engine-label[data-v-50704305] {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
.engine-buttons[data-v-50704305] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.engine-btn[data-v-50704305] {
  background: rgba(255, 255, 255, 0.05);
  color: #f1f1f1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.engine-btn[data-v-50704305]:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.engine-btn.active[data-v-50704305] {
  background: rgba(238, 63, 77, 0.2);
  color: #ee3f4d;
  border-color: rgba(238, 63, 77, 0.3);
}
@media (max-width: 768px) {
.search-input[data-v-50704305] {
    font-size: 13px;
    padding: 8px 12px;
}
.search-btn[data-v-50704305] {
    width: 40px;
    height: 40px;
}
.engine-btn[data-v-50704305] {
    font-size: 11px;
    padding: 5px 10px;
}
}

.favorites-widget[data-v-d449f223] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  color: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.favorites-header[data-v-d449f223] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0d0d0d;
  border-bottom: 1px solid #333;
}
.favorites-path[data-v-d449f223] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}
.path-btn[data-v-d449f223] {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.path-btn[data-v-d449f223]:hover {
  opacity: 1;
}
.path-text[data-v-d449f223] {
  color: #4CAF50;
}
.favorites-actions[data-v-d449f223] {
  display: flex;
  gap: 8px;
}
.action-btn[data-v-d449f223] {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  opacity: 0.7;
  transition: all 0.2s;
  border-radius: 4px;
}
.action-btn[data-v-d449f223]:hover {
  opacity: 1;
  background: #333;
}
.favorites-loading[data-v-d449f223],
.favorites-error[data-v-d449f223] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}
.spinner[data-v-d449f223] {
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin-d449f223 1s linear infinite;
}
@keyframes spin-d449f223 {
to { transform: rotate(360deg);
}
}
.favorites-content[data-v-d449f223] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.favorites-empty[data-v-d449f223] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  opacity: 0.6;
}
.empty-icon[data-v-d449f223] {
  font-size: 48px;
}
.favorites-list[data-v-d449f223] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.favorite-item[data-v-d449f223] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #222;
  border-radius: 6px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.favorite-item[data-v-d449f223]:hover:not(.is-reserved-root) {
  background: #2a2a2a;
  border-color: #4CAF50;
}
.favorite-item.is-reserved-root[data-v-d449f223] {
  padding: 12px 13px;
  background:
    radial-gradient(circle at left center, rgba(95, 215, 255, 0.05), transparent 30%),
    linear-gradient(90deg, rgba(57, 211, 83, 0.08), rgba(95, 215, 255, 0.06));
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}
.favorite-item.is-reserved-root[data-v-d449f223]:hover {
  background:
    radial-gradient(circle at left center, rgba(95, 215, 255, 0.07), transparent 32%),
    linear-gradient(90deg, rgba(57, 211, 83, 0.11), rgba(95, 215, 255, 0.08));
  transform: none;
}
.item-content[data-v-d449f223] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}
.item-icon[data-v-d449f223] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}
.item-icon--reserved-root[data-v-d449f223] {
  color: #d97757;
}
.reserved-root-star[data-v-d449f223] {
  flex: none;
  filter: drop-shadow(0 0 5px rgba(217, 119, 87, 0.12));
}
.item-name[data-v-d449f223] {
  flex: 1;
  font-size: 14px;
}
.item-name--reserved-root[data-v-d449f223] {
  color: #ecf7fb;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.item-badge[data-v-d449f223] {
  font-size: 12px;
  opacity: 0.7;
}
.item-delete[data-v-d449f223] {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.favorite-item:hover .item-delete[data-v-d449f223] {
  opacity: 0.6;
}
.item-delete[data-v-d449f223]:hover {
  opacity: 1 !important;
}
.modal-overlay[data-v-d449f223] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content[data-v-d449f223] {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 8px;
  min-width: 400px;
  border: 1px solid #333;
}
.modal-content h3[data-v-d449f223] {
  margin: 0 0 20px 0;
  color: #4CAF50;
}
.form-group[data-v-d449f223] {
  margin-bottom: 16px;
}
.form-group label[data-v-d449f223] {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
}
.form-group input[type="text"][data-v-d449f223],
.form-group input[type="url"][data-v-d449f223] {
  width: 100%;
  padding: 8px 12px;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 14px;
}
.form-group input[type="checkbox"][data-v-d449f223] {
  margin-right: 8px;
}
.modal-actions[data-v-d449f223] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.btn-primary[data-v-d449f223],
.btn-secondary[data-v-d449f223] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-primary[data-v-d449f223] {
  background: #4CAF50;
  color: white;
}
.btn-primary[data-v-d449f223]:hover {
  background: #45a049;
}
.btn-secondary[data-v-d449f223] {
  background: #333;
  color: #e0e0e0;
}
.btn-secondary[data-v-d449f223]:hover {
  background: #444;
}
