/* Title Bar Styles - macOS Style */

.title-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: rgba(13, 21, 32, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 74, 111, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 1100;
    /* Higher than NavBar (1000) */
    user-select: none;
    -webkit-app-region: drag;
}

/* Left Section */
.title-left {
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-app-region: no-drag;
}

/* Traffic Light Button Base */
.traffic-light {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

/* Mode 0: Terminal - Red */
.traffic-light.mode-0 {
    background: radial-gradient(circle at 30% 30%, #ff7b72, #ff5f56);
    box-shadow: 0 0 4px rgba(255, 95, 86, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-0:hover {
    background: radial-gradient(circle at 30% 30%, #ff9f9a, #ff7b72);
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-0.active {
    box-shadow: 0 0 12px rgba(255, 95, 86, 0.9),
        0 0 20px rgba(255, 95, 86, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Mode 1: Grid/IDE - Yellow */
.traffic-light.mode-1 {
    background: radial-gradient(circle at 30% 30%, #ffdf5d, #ffbd44);
    box-shadow: 0 0 4px rgba(255, 189, 68, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-1:hover:not(.locked) {
    background: radial-gradient(circle at 30% 30%, #ffe97f, #ffdf5d);
    box-shadow: 0 0 8px rgba(255, 189, 68, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-1.active {
    box-shadow: 0 0 12px rgba(255, 189, 68, 0.9),
        0 0 20px rgba(255, 189, 68, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-1.locked {
    background: radial-gradient(circle at 30% 30%, #6e6e6e, #4a4a4a);
    box-shadow: 0 0 4px rgba(100, 100, 100, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

/* Mode 2: Visual - Green */
.traffic-light.mode-2 {
    background: radial-gradient(circle at 30% 30%, #5cd65c, #28c840);
    box-shadow: 0 0 4px rgba(40, 200, 64, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-2:hover {
    background: radial-gradient(circle at 30% 30%, #7ae17a, #5cd65c);
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.traffic-light.mode-2.active {
    box-shadow: 0 0 12px rgba(40, 200, 64, 0.9),
        0 0 20px rgba(40, 200, 64, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Mode Icon Inside (shown on hover/active) */
.traffic-light .mode-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.traffic-light:hover .mode-icon,
.traffic-light.active .mode-icon {
    opacity: 1;
}

.traffic-light.locked .mode-icon {
    font-size: 7px;
}

/* Tooltip */
.traffic-light-wrapper {
    position: relative;
}

.traffic-light-tooltip {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 1001;
}

.traffic-light-wrapper:hover .traffic-light-tooltip {
    opacity: 1;
    visibility: visible;
    top: 28px;
}

/* Title Center */
.title-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 500;
    color: #8b949e;
    letter-spacing: 0.5px;
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
}

/* Page Info (for merged header) */
.page-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.page-icon {
    color: #00ff9d;
    font-size: 8px;
}

.page-title {
    color: #e0e0e0;
    font-weight: bold;
    font-size: 11px;
}

.page-path {
    color: #5f636e;
    font-size: 11px;
}

/* Back Link */
.back-link {
    color: #5f636e;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.2s;
    margin-right: 8px;
}

.back-link:hover {
    color: #00ff9d;
}

/* Right Section */
.title-right {
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-app-region: no-drag;
}

/* General Nav Buttons */
.nav-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
    padding: 0;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Language Button - Terminal Style */
.lang-menu-wrapper {
    position: relative;
}

.lang-btn {
    height: 24px;
    padding: 0 8px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    font-size: 11px;
    font-weight: 500;
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.5);
    color: #3dd156;
}

.lang-btn .lang-code {
    opacity: 0.6;
}

.lang-btn .lang-current {
    font-weight: 600;
}

/* Terminal Header in Dropdown */
.terminal-header {
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
    color: #6e7681;
}

.terminal-prompt {
    color: #28a745;
    margin-right: 4px;
}

/* Language Item Styles */
.lang-item {
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
}

.lang-indicator {
    font-size: 8px;
    color: #6e7681;
    transition: color 0.2s;
}

.lang-item.active .lang-indicator {
    color: #28a745;
}

.lang-label {
    flex: 1;
}

.lang-code-tag {
    font-size: 9px;
    padding: 1px 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: #6e7681;
}

.lang-item.active .lang-code-tag {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

/* User Avatar Button */
.user-menu-wrapper {
    position: relative;
}

.user-avatar-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    transition: all 0.2s ease;
}

.user-avatar-btn:hover {
    transform: scale(1.1);
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.user-avatar.authenticated {
    background: linear-gradient(135deg, #2d4a6f, #1e3a5f);
    color: #8b949e;
}

.user-avatar.guest {
    background: rgba(255, 255, 255, 0.1);
    color: #6e7681;
}

.user-avatar.guest:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #8b949e;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: linear-gradient(180deg, #1a2332 0%, #0d1520 100%);
    border: 1px solid #2d4a6f;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    padding: 6px 0;
    z-index: 1200;
    overflow: hidden;
}

.dropdown-header {
    padding: 8px 12px;
    font-size: 11px;
    color: #8b949e;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.dropdown-item {
    padding: 8px 12px;
    font-size: 12px;
    color: #c9d1d9;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-item.active {
    background: rgba(40, 200, 64, 0.15);
    color: #28c840;
}

.dropdown-item.danger {
    color: #ff7b72;
}

.dropdown-item.danger:hover {
    background: rgba(255, 95, 86, 0.15);
}

/* Dropdown Animation */
.dropdown-enter-active,
.dropdown-leave-active {
    transition: all 0.2s ease;
}

.dropdown-enter-from,
.dropdown-leave-to {
    opacity: 0;
    transform: translateY(-8px);
}

/* Lang Dropdown Position */
.lang-dropdown {
    min-width: 120px;
}
.session-timer[data-v-7bff894b] {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition: all 0.3s ease;
  user-select: none;
  padding: 2px 8px;
  border-radius: 4px;
}

/* --- Idle Styles (Green -> Orange) --- */
.session-timer.type-idle[data-v-7bff894b] {
    color: #4ade80; /* Green */
    border: 1px solid transparent;
}
.session-timer.type-idle.status-warning[data-v-7bff894b] {
    color: #fbbf24; /* Amber */
}
.session-timer.type-idle.status-critical[data-v-7bff894b] {
    color: #ef4444; /* Red */
    animation: pulse-7bff894b 2s infinite;
}

/* --- Forced Styles (Blue -> Red) --- */
.session-timer.type-forced[data-v-7bff894b] {
    color: #60a5fa; /* Blue */
    border: 1px solid rgba(96, 165, 250, 0.2);
}
.session-timer.type-forced.status-warning[data-v-7bff894b] {
    color: #f87171; /* Light Red */
    border-color: rgba(248, 113, 113, 0.5);
}
.session-timer.type-forced.status-critical[data-v-7bff894b] {
    color: #ff0000; /* Bright Red */
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    font-weight: bold;
    animation: urgent-pulse-7bff894b 1s infinite;
}
@keyframes urgent-pulse-7bff894b {
0% { transform: scale(1); opacity: 1;
}
50% { transform: scale(1.02); opacity: 0.8;
}
100% { transform: scale(1); opacity: 1;
}
}
.label[data-v-7bff894b] {
  opacity: 0.8;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.time[data-v-7bff894b] {
  font-weight: 700;
  min-width: 60px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
@keyframes pulse-7bff894b {
0% { opacity: 1;
}
50% { opacity: 0.6;
}
100% { opacity: 1;
}
}

.notification-panel[data-v-f72b6898] {
    width: 320px;
    padding: 0;
    overflow: hidden;
    right: 0; /* Align right to parent */
    left: auto;
    /* dropdown-menu class handles absolute positioning and z-index */
}
.panel-header[data-v-f72b6898] {
    padding: 12px 16px;
    border-bottom: 1px solid #30363d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #161b22;
}
.title[data-v-f72b6898] {
    font-weight: 600;
    color: #c9d1d9;
    font-size: 14px;
}
.action-link[data-v-f72b6898] {
    background: none;
    border: none;
    color: #58a6ff;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}
.action-link[data-v-f72b6898]:hover { text-decoration: underline;
}
.panel-body[data-v-f72b6898] {
    max-height: 400px;
    overflow-y: auto;
    background: #0d1117;
}
.empty-state[data-v-f72b6898] {
    padding: 20px;
    text-align: center;
    color: #8b949e;
    font-size: 13px;
}
.notification-item[data-v-f72b6898] {
    padding: 12px 38px 12px 16px; /* Extra right padding for check button */
    border-bottom: 1px solid #21262d;
    cursor: pointer;
    display: flex;
    gap: 12px;
    transition: background 0.2s;
    position: relative; /* For absolute button */
}
.notification-item[data-v-f72b6898]:hover {
    background: #161b22;
}
.notification-item[data-v-f72b6898]:last-child {
    border-bottom: none;
}
.item-icon[data-v-f72b6898] {
    padding-top: 4px;
}
.dot[data-v-f72b6898] {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30363d;
}
.unread .dot[data-v-f72b6898] {
    background: #58a6ff;
    box-shadow: 0 0 4px #58a6ff;
}
.item-content[data-v-f72b6898] {
    flex: 1;
    min-width: 0; /* text truncate works */
}
.item-title[data-v-f72b6898] {
    font-weight: 600;
    font-size: 13px;
    color: #c9d1d9;
    margin-bottom: 2px;
}
.unread .item-title[data-v-f72b6898] {
    color: #fff;
}
.item-msg[data-v-f72b6898] {
    color: #8b949e;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.item-time[data-v-f72b6898] {
    color: #484f58;
    font-size: 11px;
}
.panel-footer[data-v-f72b6898] {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #30363d;
    background: #161b22;
    color: #c9d1d9;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
}
.panel-footer[data-v-f72b6898]:hover {
    background: #21262d;
}
.item-check-btn[data-v-f72b6898] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #21262d;
    border: 1px solid #30363d;
    color: #58a6ff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.notification-item:hover .item-check-btn[data-v-f72b6898] {
    display: flex;
}
.item-check-btn[data-v-f72b6898]:hover {
    background: #58a6ff;
    color: #0d1117;
    border-color: #58a6ff;
}

/* Additional styles for links */
.link-text[data-v-f72b6898] {
    color: #58a6ff; /* GitHub blue */
    text-decoration: none;
}
.link-text[data-v-f72b6898]:hover {
    text-decoration: underline;
}
.link-icon[data-v-f72b6898] {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: super;
}

/* Basic Badge Style - Ideally move to CSS file */
.notification-wrapper[data-v-2f90d6a4] {
    position: relative;
    /* margin-right removed to use parent gap */
}
.bell-icon[data-v-2f90d6a4] {
    width: 18px;
    height: 18px;
    color: #c9d1d9;
    transition: color 0.2s;
}
.nav-btn:hover .bell-icon[data-v-2f90d6a4] {
    color: #fff;
}
.badge[data-v-2f90d6a4] {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff4757;
    color: white;
    font-size: 9px;
    padding: 0 4px;
    border-radius: 10px;
    min-width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    pointer-events: none;
    box-shadow: 0 0 0 1px #010409;
}

.toast-container[data-v-20f3eb0e] {
  position: fixed;
  top: 48px; /* Below TitleBar (36px + 12px padding) */
  right: 16px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.toast-item[data-v-20f3eb0e] {
  pointer-events: auto;
  min-width: 300px;
  max-width: 400px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(22, 27, 34, 0.9); /* More opaque */
  backdrop-filter: blur(12px);
  color: #e6edf3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-width: 4px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.toast-item[data-v-20f3eb0e]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    background: rgba(22, 27, 34, 0.98);
}
.toast-content[data-v-20f3eb0e] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.toast-header[data-v-20f3eb0e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}
.toast-title[data-v-20f3eb0e] {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icons for types */
.toast-success .toast-title[data-v-20f3eb0e]::before { content: '✓'; color: #2ea043;
}
.toast-error .toast-title[data-v-20f3eb0e]::before { content: '✕'; color: #f85149;
}
.toast-info .toast-title[data-v-20f3eb0e]::before { 
    content: 'ℹ'; 
    font-family: monospace;
    display: inline-flex;
    width: 16px; 
    height: 16px; 
    background: rgba(88, 166, 255, 0.2); 
    color: #58a6ff; 
    border-radius: 50%;
    align-items: center; 
    justify-content: center;
    font-size: 11px;
}
.toast-warning .toast-title[data-v-20f3eb0e]::before { content: '⚠'; color: #d29922;
}

/* Border Colors */
.toast-success[data-v-20f3eb0e] { border-left-color: #2ea043;
}
.toast-error[data-v-20f3eb0e] { border-left-color: #f85149;
}
.toast-info[data-v-20f3eb0e] { border-left-color: #58a6ff;
}
.toast-warning[data-v-20f3eb0e] { border-left-color: #d29922;
}
.toast-body[data-v-20f3eb0e] {
    font-size: 12px;
    color: #8b949e;
    line-height: 1.4;
    word-break: break-all;
}
.toast-action-btn[data-v-20f3eb0e] {
    background: transparent;
    border: none;
    color: #3fb950;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    height: 24px;
    width: 24px;
}
.toast-action-btn[data-v-20f3eb0e]:hover {
    background: rgba(46, 160, 67, 0.2);
    transform: scale(1.1);
}

/* Animations */
.toast-enter-active[data-v-20f3eb0e],
.toast-leave-active[data-v-20f3eb0e] {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast-enter-from[data-v-20f3eb0e] { opacity: 0; transform: translateX(30px) scale(0.95);
}
.toast-leave-to[data-v-20f3eb0e] { opacity: 0; transform: translateX(30px);
}

/* Global style for pages with TitleBar */
.has-titlebar {
  padding-top: 36px;
  min-height: 100vh;
}
/* Main CSS Entry Point */

/* Base Styles (Reset, Typography, etc.) */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
  background-color: #1c1c1c;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
}

#app {
  min-height: 100vh;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ee3f4d;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* File Icons for Vditor Content */

/* PDF Files */

.vditor-reset a[href$=".pdf"] {
  display: inline-flex;
  align-items: center;
  color: #58a6ff !important;
  text-decoration: none;
}

.vditor-reset a[href$=".pdf"]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e53e3e'%3E%3Cpath d='M20 2H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8.5 7.5c0 .83-.67 1.5-1.5 1.5H9v2H7.5V7H10c.83 0 1.5.67 1.5 1.5v2.5zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v14c0 1.1.9 2 2 2h14v-2H4V6zm10 5.5h1v-3h-1v3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Archive Files (ZIP, RAR, GZ, 7Z, TAR) */

.vditor-reset a[href$=".zip"],
.vditor-reset a[href$=".rar"],
.vditor-reset a[href$=".gz"],
.vditor-reset a[href$=".7z"],
.vditor-reset a[href$=".tar"] {
  display: inline-flex;
  align-items: center;
  color: #58a6ff !important;
  text-decoration: none;
}

.vditor-reset a[href$=".zip"]::before,
.vditor-reset a[href$=".rar"]::before,
.vditor-reset a[href$=".gz"]::before,
.vditor-reset a[href$=".7z"]::before,
.vditor-reset a[href$=".tar"]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  /* Cleaner archive icon (folder) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d69e2e'%3E%3Cpath d='M20 6h-8l-2-2H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-6 10h-6v-2h6v2zm0-4h-6v-2h6v2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Global Overrides (Third-party libraries) */

/* Global Overrides for Third-party Libraries */

/* --- VueDatePicker Overrides (from TodoForm.vue) --- */

.dp__menu {
    z-index: 99999 !important;
}

.dp__outer_menu_wrap {
    z-index: 99999 !important;
}

/* Hide the time toggle button in Date Picker menu */

.hide-time-toggle .dp__action_row {
    display: none !important;
}

.hide-time-toggle .dp__action_buttons {
    display: none !important;
}

.hide-time-toggle .dp__selection_preview {
    display: none !important;
}

/* --- Vditor Overrides (from BlogEditor.vue) --- */

/* Global styles for Vditor Fullscreen override to ensure it escapes all stacking contexts */

.vditor--fullscreen {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

.vditor--fullscreen .vditor-toolbar {
    z-index: 100000 !important;
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
    border-bottom: 1px solid #30363d !important;
    background: #0d1117 !important;
}

.vditor--fullscreen .vditor-content {
    background: #0d1117 !important;
}

/* Page/View Specific Styles (Optional global imports, though mostly handled by components) */

/* @import './views/auth-view.css'; -- Not imported globally as it is used only in auth views */
.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;
}
}

.confirm-overlay[data-v-da616313] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.confirm-overlay.toast[data-v-da616313] {
  background: transparent;
  pointer-events: none;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
}
.confirm-modal[data-v-da616313] {
  background: linear-gradient(135deg, rgba(13, 21, 32, 0.98), rgba(22, 33, 48, 0.98));
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 24px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.confirm-modal.toast[data-v-da616313] {
  pointer-events: auto;
  min-width: 300px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: slideIn-da616313 0.3s ease-out;
}
@keyframes slideIn-da616313 {
from { transform: translateX(100%); opacity: 0;
}
to { transform: translateX(0); opacity: 1;
}
}
.confirm-header[data-v-da616313] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.confirm-icon[data-v-da616313] {
  font-size: 20px;
}
.confirm-icon.danger[data-v-da616313] { color: #f85149;
}
.confirm-icon.warning[data-v-da616313] { color: #d29922;
}
.confirm-icon.info[data-v-da616313] { color: #1890ff;
}
.confirm-title[data-v-da616313] {
  font-size: 16px;
  font-weight: 600;
  color: #c9d1d9;
}
.confirm-message[data-v-da616313] {
  font-size: 14px;
  color: #8b949e;
  line-height: 1.5;
  margin-bottom: 24px;
}
.confirm-actions[data-v-da616313] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.btn-cancel[data-v-da616313],
.btn-confirm[data-v-da616313] {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cancel[data-v-da616313] {
  background: transparent;
  border: 1px solid #30363d;
  color: #8b949e;
}
.btn-cancel[data-v-da616313]:hover {
  border-color: #6e7681;
  color: #c9d1d9;
}
.btn-confirm[data-v-da616313] {
  border: none;
  font-weight: 500;
}
.btn-confirm.danger[data-v-da616313] {
  background: #f85149;
  color: white;
}
.btn-confirm.danger[data-v-da616313]:hover {
  background: #ff6b61;
}
.btn-confirm.warning[data-v-da616313] {
  background: #d29922;
  color: #0d1520;
}
.btn-confirm.warning[data-v-da616313]:hover {
  background: #e2a932;
}
.btn-confirm.info[data-v-da616313] {
  background: #1890ff;
  color: white;
}
.btn-confirm.info[data-v-da616313]:hover {
  background: #40a9ff;
}

.favorites-widget[data-v-7ae7a5c6] {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  color: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.favorites-header[data-v-7ae7a5c6] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0d0d0d;
  border-bottom: 1px solid #333;
}
.favorites-path[data-v-7ae7a5c6] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}
.path-btn[data-v-7ae7a5c6] {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.path-btn[data-v-7ae7a5c6]:hover {
  opacity: 1;
}
.path-text[data-v-7ae7a5c6] {
  color: #4CAF50;
}
.favorites-actions[data-v-7ae7a5c6] {
  display: flex;
  gap: 8px;
}
.action-btn[data-v-7ae7a5c6] {
  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-7ae7a5c6]:hover {
  opacity: 1;
  background: #333;
}
.favorites-loading[data-v-7ae7a5c6],
.favorites-error[data-v-7ae7a5c6] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}
.spinner[data-v-7ae7a5c6] {
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-top-color: #4CAF50;
  border-radius: 50%;
  animation: spin-7ae7a5c6 1s linear infinite;
}
@keyframes spin-7ae7a5c6 {
to { transform: rotate(360deg);
}
}
.favorites-content[data-v-7ae7a5c6] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}
.favorites-empty[data-v-7ae7a5c6] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  opacity: 0.6;
}
.empty-icon[data-v-7ae7a5c6] {
  font-size: 48px;
}
.favorites-list[data-v-7ae7a5c6] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.favorite-item[data-v-7ae7a5c6] {
  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-7ae7a5c6]:hover {
  background: #2a2a2a;
  border-color: #4CAF50;
}
.item-content[data-v-7ae7a5c6] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  cursor: pointer;
}
.item-icon[data-v-7ae7a5c6] {
  font-size: 20px;
}
.item-name[data-v-7ae7a5c6] {
  flex: 1;
  font-size: 14px;
}
.item-badge[data-v-7ae7a5c6] {
  font-size: 12px;
  opacity: 0.7;
}
.item-delete[data-v-7ae7a5c6] {
  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-7ae7a5c6] {
  opacity: 0.6;
}
.item-delete[data-v-7ae7a5c6]:hover {
  opacity: 1 !important;
}
.modal-overlay[data-v-7ae7a5c6] {
  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-7ae7a5c6] {
  background: #1a1a1a;
  padding: 24px;
  border-radius: 8px;
  min-width: 400px;
  border: 1px solid #333;
}
.modal-content h3[data-v-7ae7a5c6] {
  margin: 0 0 20px 0;
  color: #4CAF50;
}
.form-group[data-v-7ae7a5c6] {
  margin-bottom: 16px;
}
.form-group label[data-v-7ae7a5c6] {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
}
.form-group input[type="text"][data-v-7ae7a5c6],
.form-group input[type="url"][data-v-7ae7a5c6] {
  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-7ae7a5c6] {
  margin-right: 8px;
}
.modal-actions[data-v-7ae7a5c6] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}
.btn-primary[data-v-7ae7a5c6],
.btn-secondary[data-v-7ae7a5c6] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.btn-primary[data-v-7ae7a5c6] {
  background: #4CAF50;
  color: white;
}
.btn-primary[data-v-7ae7a5c6]:hover {
  background: #45a049;
}
.btn-secondary[data-v-7ae7a5c6] {
  background: #333;
  color: #e0e0e0;
}
.btn-secondary[data-v-7ae7a5c6]:hover {
  background: #444;
}
