/* EVRIZ Blog - Custom Styles */

/* Scrollbar hide for filter bar */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stealth panel (matching evriz.co.kr) */
.stealth-panel {
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid rgba(51, 65, 85, 0.3);
}

/* Smooth transitions for cards */
article { transition: all 0.3s ease; }
article:hover { transform: translateY(-2px); }

/* Header scroll behavior */
.header-scrolled {
  background: rgba(5, 5, 5, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-color: rgba(51, 65, 85, 0.5) !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Selection */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: rgba(221, 214, 254, 1);
}

/* Focus styles */
:focus-visible {
  outline: 1px solid rgba(139, 92, 246, 0.5);
  outline-offset: 2px;
}

/* Admin table styles */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}
.admin-table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(30, 41, 59, 0.3);
}
.admin-table tr:hover td {
  background: rgba(15, 23, 42, 0.3);
}

/* ========================================
   PROSE STYLES - Blog Content (prose-evriz)
   All blog post rendering styles
   ======================================== */
.prose-evriz {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 1rem;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
/* Headings */
.prose-evriz h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
.prose-evriz h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
.prose-evriz h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 1.75rem 0 0.5rem;
  line-height: 1.4;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
.prose-evriz h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 1.5rem 0 0.5rem;
  line-height: 1.4;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
/* Paragraphs */
.prose-evriz p {
  margin-bottom: 1rem;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
/* Links */
.prose-evriz a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-evriz a:hover { color: #c4b5fd; }
/* Strong / Em / Del */
.prose-evriz strong { color: #f1f5f9; font-weight: 600; }
.prose-evriz em { color: #cbd5e1; font-style: italic; }
.prose-evriz del { color: #64748b; text-decoration: line-through; }
/* Code - monospace font (unified) */
.prose-evriz code {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', 'Menlo', monospace;
  font-size: 0.85em;
  background: rgba(30, 41, 59, 0.6);
  color: #c4b5fd;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  border: 1px solid rgba(51, 65, 85, 0.3);
}
.prose-evriz pre {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 0.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  position: relative;
}
.prose-evriz pre code {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #e2e8f0;
}
.prose-evriz pre[data-lang]::before {
  content: attr(data-lang);
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 0.7rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Images */
.prose-evriz img {
  border-radius: 0.5rem;
  border: 1px solid rgba(51, 65, 85, 0.3);
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}
/* Lists */
.prose-evriz ul, .prose-evriz ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.prose-evriz ul { list-style-type: disc; }
.prose-evriz ol { list-style-type: decimal; }
.prose-evriz li {
  margin-bottom: 0.35rem;
  color: #cbd5e1;
}
.prose-evriz li::marker { color: #64748b; }
/* Checklist */
.prose-evriz .checklist-group { list-style: none; padding-left: 0; }
.prose-evriz li.checklist {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.15rem 0;
}
.prose-evriz li.checklist::before {
  content: '';
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  border: 2px solid #475569;
  border-radius: 3px;
  margin-top: 0.25em;
  flex-shrink: 0;
}
.prose-evriz li.checklist.checked::before {
  background: #7c3aed;
  border-color: #7c3aed;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
}
.prose-evriz li.checklist.checked {
  color: #64748b;
  text-decoration: line-through;
}
/* Blockquote */
.prose-evriz blockquote {
  border-left: 4px solid #7c3aed;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  color: #94a3b8;
  font-style: italic;
}
.prose-evriz blockquote p { margin-bottom: 0; }
/* Blockquote color variants - Blog content */
.prose-evriz blockquote.bq-blue {
  border-left-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
.prose-evriz blockquote.bq-green {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}
.prose-evriz blockquote.bq-yellow {
  border-left-color: #eab308;
  background: rgba(234, 179, 8, 0.05);
}
.prose-evriz blockquote.bq-red {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}
/* Table */
.prose-evriz table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.prose-evriz th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #e2e8f0;
  border-bottom: 2px solid rgba(51, 65, 85, 0.5);
  background: rgba(15, 23, 42, 0.3);
}
.prose-evriz td {
  padding: 0.75rem 1rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}
.prose-evriz tr:hover td { background: rgba(15, 23, 42, 0.3); }
/* HR */
.prose-evriz hr {
  border: none;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  margin: 2rem 0;
}
/* Callout boxes */
.prose-evriz .callout {
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  border-left: 4px solid;
  font-size: 0.9375rem;
}
.prose-evriz .callout-info {
  background: rgba(59, 130, 246, 0.08);
  border-color: #3b82f6;
  color: #93c5fd;
}
.prose-evriz .callout-warning {
  background: rgba(234, 179, 8, 0.08);
  border-color: #eab308;
  color: #fde68a;
}
.prose-evriz .callout-tip {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10b981;
  color: #6ee7b7;
}
.prose-evriz .callout-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
  color: #fca5a5;
}

/* Mobile menu animation (matching evriz.co.kr slide-in-from-top-5) */
@keyframes slideInFromTop {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-slide-in-from-top {
  animation: slideInFromTop 0.2s ease-out;
}
/* Mobile chevron rotation */
.mobile-chevron.rotate-180 { transform: rotate(180deg); }
/* Mobile menu links smooth transitions */
#mobile-menu a { transition: color 0.15s ease; }

/* Subtle grid background */
.bg-grid-fine {
  background-image: 
    linear-gradient(rgba(51, 65, 85, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 65, 85, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ========================================
   ADMIN EDITOR STYLES
   ======================================== */

/* Toolbar button */
.toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #94a3b8;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.toolbar-btn:hover {
  background: rgba(51, 65, 85, 0.5);
  color: #e2e8f0;
}
.toolbar-btn.active {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
}
/* Toolbar group label */
.toolbar-group-label {
  font-size: 0.6rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0.25rem;
  user-select: none;
}

/* Mode toggle tabs */
.editor-mode-tab {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  background: transparent;
  color: #64748b;
}
.editor-mode-tab:hover { color: #94a3b8; }
.editor-mode-tab.active {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.3);
}

/* WYSIWYG Editor Content Area */
.prose-editor {
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #cbd5e1;
  caret-color: #a78bfa;
  word-break: keep-all;
}
.prose-editor:empty::before {
  content: '본문을 입력하세요... \A\A/ 를 입력하면 블록 타입을 선택할 수 있습니다.';
  white-space: pre-line;
  color: #475569;
  pointer-events: none;
}
.prose-editor:focus { outline: none; }
/* Headings */
.prose-editor h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
.prose-editor h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
.prose-editor h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 1.75rem 0 0.5rem;
  line-height: 1.4;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
/* Paragraphs */
.prose-editor p {
  margin-bottom: 1rem;
  min-height: 1.8em;
  font-family: 'Work Sans', 'Noto Sans KR', sans-serif;
}
/* Bold / Italic / Strike */
.prose-editor strong { color: #f1f5f9; font-weight: 600; }
.prose-editor em { color: #cbd5e1; font-style: italic; }
.prose-editor s, .prose-editor del { color: #64748b; text-decoration: line-through; }
/* Links */
.prose-editor a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
/* Lists */
.prose-editor ul { list-style: disc; padding-left: 1.5rem; margin: 1rem 0; }
.prose-editor ol { list-style: decimal; padding-left: 1.5rem; margin: 1rem 0; }
.prose-editor li { margin-bottom: 0.35rem; }
.prose-editor li::marker { color: #64748b; }
/* Blockquote */
.prose-editor blockquote {
  border-left: 4px solid #7c3aed;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  color: #94a3b8;
  font-style: italic;
}
/* Blockquote color variants - Editor */
.prose-editor blockquote.bq-blue {
  border-left-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}
.prose-editor blockquote.bq-green {
  border-left-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}
.prose-editor blockquote.bq-yellow {
  border-left-color: #eab308;
  background: rgba(234, 179, 8, 0.05);
}
.prose-editor blockquote.bq-red {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}
/* Code block */
.prose-editor pre {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 0.5rem;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-wrap: break-word;
  position: relative;
}
.prose-editor pre code {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}
/* Inline code */
.prose-editor code {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', 'Consolas', 'Monaco', 'Menlo', monospace;
  font-size: 0.85em;
  background: rgba(30, 41, 59, 0.6);
  color: #c4b5fd;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  border: 1px solid rgba(51, 65, 85, 0.3);
}
/* Horizontal rule */
.prose-editor hr {
  border: none;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
  margin: 2rem 0;
}
/* Images */
.prose-editor img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 1px solid rgba(51, 65, 85, 0.3);
  margin: 1.5rem 0;
  cursor: default;
}
/* Table in WYSIWYG editor */
.prose-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.prose-editor th, .prose-editor td {
  border: 1px solid rgba(51, 65, 85, 0.5);
  padding: 0.5rem 0.75rem;
  text-align: left;
  min-width: 80px;
}
.prose-editor th {
  background: rgba(15, 23, 42, 0.5);
  color: #e2e8f0;
  font-weight: 600;
}
.prose-editor td { color: #cbd5e1; }
/* Checklist in editor */
.prose-editor .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.15rem 0;
}
.prose-editor .checklist-item input[type="checkbox"] {
  margin-top: 0.35em;
  accent-color: #7c3aed;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
/* Callout in editor */
.prose-editor .callout {
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  border-left: 4px solid;
  font-size: 0.9375rem;
}
.prose-editor .callout-info { background: rgba(59, 130, 246, 0.08); border-color: #3b82f6; }
.prose-editor .callout-warning { background: rgba(234, 179, 8, 0.08); border-color: #eab308; }
.prose-editor .callout-tip { background: rgba(16, 185, 129, 0.08); border-color: #10b981; }
.prose-editor .callout-danger { background: rgba(239, 68, 68, 0.08); border-color: #ef4444; }

/* Markdown textarea mode */
.markdown-editor {
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.4);
  border: none;
  resize: none;
  caret-color: #a78bfa;
  tab-size: 2;
}
.markdown-editor:focus { outline: none; }
.markdown-editor::placeholder { color: #475569; }

/* Slash command menu */
#slash-menu {
  position: absolute;
  z-index: 200;
  background: #0f172a;
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  padding: 0.25rem;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
}
#slash-menu .slash-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.1s;
  color: #cbd5e1;
  font-size: 0.875rem;
}
#slash-menu .slash-item:hover,
#slash-menu .slash-item.active {
  background: rgba(139, 92, 246, 0.15);
  color: #f1f5f9;
}
#slash-menu .slash-item .slash-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(51, 65, 85, 0.3);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
#slash-menu .slash-item .slash-label { font-weight: 500; }
#slash-menu .slash-item .slash-desc { font-size: 0.75rem; color: #64748b; }

/* Table insert dialog */
.table-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  background: #0f172a;
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 1.5rem;
  min-width: 280px;
}
.table-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0,0,0,0.5);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-msg {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #e2e8f0;
  background: #1e293b;
  border: 1px solid rgba(51, 65, 85, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  min-width: 180px;
  max-width: 360px;
  animation: toastSlideIn 0.3s ease-out;
}
.toast-success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}
.toast-error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.toast-info {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  color: #93c5fd;
}
.toast-warning {
  background: rgba(234, 179, 8, 0.12);
  border-color: rgba(234, 179, 8, 0.3);
  color: #fde68a;
}
@keyframes toastSlideIn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ========================================
   UPLOAD AREA STYLES
   ======================================== */
#thumbnail-upload-area.drag-over,
#image-upload-area.drag-over {
  border-color: rgba(139, 92, 246, 0.5) !important;
  background: rgba(139, 92, 246, 0.05);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Date input styles for dark theme */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}
input[type="date"] {
  color-scheme: dark;
}

/* ========================================
   CUSTOM DROPDOWN (Editor-style)
   ======================================== */
.evriz-dropdown {
  position: relative;
  display: inline-flex;
}
.evriz-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  min-width: 0;
  user-select: none;
}
.evriz-dropdown-trigger:hover {
  border-color: rgba(139, 92, 246, 0.4);
  color: #f1f5f9;
  background: rgba(15, 23, 42, 0.8);
}
.evriz-dropdown-trigger.active {
  border-color: rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.08);
}
.evriz-dropdown-trigger svg {
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.2s ease;
}
.evriz-dropdown-trigger.open svg {
  transform: rotate(180deg);
}
.evriz-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 300;
  background: #0f172a;
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 0.375rem;
  min-width: 170px;
  max-height: 260px;
  overflow-y: auto;
  animation: evrizDropdownFadeIn 0.15s ease-out;
}
.evriz-dropdown-menu.align-right {
  left: auto;
  right: 0;
}
@keyframes evrizDropdownFadeIn {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.evriz-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: #cbd5e1;
  transition: all 0.1s ease;
  white-space: nowrap;
  user-select: none;
}
.evriz-dropdown-item:hover {
  background: rgba(139, 92, 246, 0.15);
  color: #f1f5f9;
}
.evriz-dropdown-item.active {
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
}
.evriz-dropdown-separator {
  height: 1px;
  background: rgba(51, 65, 85, 0.4);
  margin: 0.25rem 0.375rem;
}
