/* סגנון כללי וברירות מחדל */
:root {
  /* צבעי מותג */
  --brand-dark: #16213f;      /* כחול כהה - primary */
  --brand-medium: #25408f;    /* כחול בינוני - secondary */
  --brand-light: #7dd2ef;     /* תכלת בהיר - accent */
  
  /* צבעים מעודכנים למותג */
  --primary-color: #25408f;
  --primary-hover: #16213f;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #7dd2ef;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  direction: rtl;
  text-align: right;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  min-height: 100vh;
}

/* כותרות */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

/* כפתורים */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

/* Minimalist Outline Buttons - עיצוב מודרני מינימליסטי */

/* כפתור ברירת מחדל - צבע מותג בינוני */
.btn-outline,
.btn-md-outline {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline:hover,
.btn-md-outline:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.btn-outline:active,
.btn-md-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 64, 143, 0.15);
}

/* וריאציה כהה */
.btn-outline-dark {
  background: transparent;
  color: var(--brand-dark);
  border: 1.5px solid var(--brand-dark);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-dark:hover {
  background: var(--brand-dark);
  color: white;
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 33, 63, 0.2);
}

.btn-outline-dark:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(22, 33, 63, 0.15);
}

/* וריאציה בהירה */
.btn-outline-light {
  background: transparent;
  color: var(--brand-light);
  border: 1.5px solid var(--brand-light);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
  border-color: var(--brand-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(125, 210, 239, 0.3);
}

.btn-outline-light:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(125, 210, 239, 0.2);
}

/* אייקונים בתוך כפתורים */
.btn-outline i,
.btn-md-outline i,
.btn-outline-dark i,
.btn-outline-light i {
  font-size: 0.875rem;
}

/* וריאציות נוספות - כולם באותו צבע מותג */
.btn-outline-danger {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-danger:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.btn-outline-success {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-success:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.btn-outline-warning {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-warning:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.btn-outline-secondary {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.btn-outline-secondary:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

/* גודל קטן */
.btn-sm.btn-outline,
.btn-sm.btn-outline-dark,
.btn-sm.btn-outline-light,
.btn-sm.btn-outline-danger,
.btn-sm.btn-outline-success,
.btn-sm.btn-outline-warning,
.btn-sm.btn-outline-secondary {
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
}

/* אייקונים בכפתורים outline */
.btn-outline i,
.btn-outline-dark i,
.btn-outline-light i,
.btn-outline-danger i,
.btn-outline-success i,
.btn-outline-warning i,
.btn-outline-secondary i {
  font-size: 0.875rem;
}

/* כפתור מושבת */
.btn-outline:disabled,
.btn-md-outline:disabled,
.btn-outline-dark:disabled,
.btn-outline-light:disabled,
.btn-outline-danger:disabled,
.btn-outline-success:disabled,
.btn-outline-warning:disabled,
.btn-outline-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* כפתורים סטנדרטיים - כולם באותו צבע מותג מינימליסטי */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-info,
.btn-danger,
.btn-warning,
.btn-outline {
  background: transparent;
  color: var(--brand-medium);
  border: 1.5px solid var(--brand-medium);
  transition: all 0.25s ease;
}

.btn-primary:hover:not(:disabled),
.btn-secondary:hover:not(:disabled),
.btn-success:hover:not(:disabled),
.btn-info:hover:not(:disabled),
.btn-danger:hover:not(:disabled),
.btn-warning:hover:not(:disabled),
.btn-outline:hover:not(:disabled) {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.btn-primary:active:not(:disabled),
.btn-secondary:active:not(:disabled),
.btn-success:active:not(:disabled),
.btn-info:active:not(:disabled),
.btn-danger:active:not(:disabled),
.btn-warning:active:not(:disabled),
.btn-outline:active:not(:disabled) {
  transform: translateY(0);
}

/* גדלים */
.btn-sm,
.btn-sm.btn-outline,
.btn-sm.btn-outline-dark,
.btn-sm.btn-outline-light,
.btn-sm.btn-outline-danger,
.btn-sm.btn-outline-success,
.btn-sm.btn-outline-warning,
.btn-sm.btn-outline-secondary,
.btn-sm.btn-primary,
.btn-sm.btn-secondary,
.btn-sm.btn-success,
.btn-sm.btn-info,
.btn-sm.btn-danger,
.btn-sm.btn-warning {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* לחצן בחירה מרובה - צבע הפוך כשפעיל */
#toggleSelectionModeBtn.active {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* אייקונים בכפתורים */
.btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm i {
  font-size: 0.75rem;
}


/* טפסים */
.form-group {
  margin-bottom: 1rem;
}

label,
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control,
textarea.form-control,
select.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  transition: border-color 0.15s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.form-control small,
.form-group small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* אזור גרירה לבחירת קובץ - מיכל לחיץ עם תמיכה ב-drag & drop */
.file-drop-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(128, 128, 128, 0.35);
  border-radius: 8px;
  background: var(--bg-light);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
  outline: none;
  min-height: 120px;
}

.file-drop-zone:hover {
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb, 37, 99, 235), 0.06);
}

.file-drop-zone:focus-visible {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.file-drop-zone.is-drag-over {
  border-style: solid;
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb, 37, 99, 235), 0.1);
  transform: scale(1.01);
}

.file-drop-zone.has-file {
  border-style: solid;
  border-color: var(--primary-color);
  background: rgba(var(--primary-color-rgb, 37, 99, 235), 0.08);
}

.file-drop-zone__content {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.file-drop-zone__icon {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.file-drop-zone__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.file-drop-zone__link {
  color: var(--primary-color);
  text-decoration: underline;
}

.file-drop-zone__hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* כרטיסים */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-light);
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

/* התראות */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-success {
  color: #16213f;
  background-color: rgba(125, 210, 239, 0.15);
  border-color: #7dd2ef;
}

.alert-danger {
  color: #991b1b;
  background-color: #fee2e2;
  border-color: #fca5a5;
}

.alert-warning {
  color: #92400e;
  background-color: #fef3c7;
  border-color: #fcd34d;
}

.alert-info {
  color: #16213f;
  background-color: rgba(37, 64, 143, 0.1);
  border-color: #25408f;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.25rem;
}

.badge-primary {
  background-color: #25408f;
  color: white;
}

.badge-success {
  background-color: #25408f;
  color: white;
}

.badge-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.badge-danger {
  background-color: var(--danger-color);
  color: white;
}

/* טבלאות */
.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.table thead th {
  background-color: var(--bg-light);
  font-weight: 600;
  text-align: right;
}

.table tbody tr:hover {
  background-color: var(--bg-light);
}

/* כלי עזר */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-block { display: inline-block; }

.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Progress Bar */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: var(--bg-light);
  border-radius: 0.25rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: var(--primary-color);
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 1rem 0;
  }
  100% {
    background-position: 0 0;
  }
}

.bg-success {
  background-color: var(--success-color) !important;
}

.bg-warning {
  background-color: var(--warning-color) !important;
}

.bg-danger {
  background-color: var(--danger-color) !important;
}

/* מזהה פרויקט - עמוד רשימת הפרויקטים (כרטיסים) */
.project-id-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 100%;
  overflow: hidden;
}

/* מזהה פרויקט - עמוד הפרויקט הבודד */
.project-id-container-page {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  max-width: 100%;
  overflow: hidden;
  margin: 0;
}

.project-id-label {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.project-id-value {
  color: var(--primary-color);
  user-select: all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.project-id-copy-btn {
  padding: 0.25rem 0.5rem;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.project-id-copy-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.project-id-copy-btn:active {
  transform: scale(0.95);
}

/* גודל כפתור קטן יותר בעמוד הפרויקט */
.project-id-container-page .project-id-copy-btn {
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
}

/* לחצני מידע ומפת קבצים - תואם לרוחב וגובה מיכל המזהה */
.project-info-buttons {
  width: fit-content;
  max-width: 100%;
  margin: 0;
}

/* תווית סטטוס פרויקט - סגנון מותג */
.project-status-badge {
  background: transparent;
  color: var(--brand-medium);
  border: 1px solid var(--brand-medium);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.project-info-btn {
  /* מבנה ומיקום */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  box-sizing: border-box;
  
  /* גודל וריווח - זהה בדיוק למיכל המזהה */
  padding: 0.375rem 0.5rem;
  gap: 0.375rem;
  min-height: 0;
  
  /* טקסט */
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  
  /* עיצוב - צבע מותג כמו btn-outline */
  background: transparent;
  color: var(--brand-medium);
  border: 1px solid var(--brand-medium);
  border-radius: 0.25rem;
  
  /* אינטראקציה */
  cursor: pointer;
  transition: all 0.25s ease;
}

.project-info-btn:hover {
  background: var(--brand-medium);
  color: white;
  border-color: var(--brand-medium);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 64, 143, 0.2);
}

.project-info-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 64, 143, 0.15);
}

/* תגובתיות */
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .project-id-container {
    font-size: 0.75rem;
  }
  
  .project-id-container-page {
    font-size: 0.65rem;
    padding: 0.25rem 0.375rem;
    max-width: 100%;
  }
  
  .project-id-container-page .project-id-copy-btn {
    padding: 0.15rem 0.3rem;
    font-size: 0.65rem;
  }
  
  .project-info-btn {
    padding: 0.25rem 0.375rem;
    font-size: 0.65rem;
    gap: 0.25rem;
    border-width: 1px;
  }
  
  /* התאמת מיקום מיכל המזהה למובייל */
  .card-body > div[style*="position: absolute"] {
    top: 1rem !important;
    left: 1rem !important;
  }
}

/* Favicon for scraped files */
.file-favicon {
  width: 36px;
  height: 36px;
  margin-left: 0;
  vertical-align: middle;
  border-radius: 4px;
  display: inline-block;
  object-fit: contain;
  background-color: transparent;
  padding: 0;
}

.file-favicon:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Fallback icon spacing */
.file-favicon + i.fas {
  margin-left: 0;
}

/* Favicon in file-icon container - fill the container */
.file-icon .file-favicon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* עיצוב שורת המידע של קבצים מגורדים */
.file-meta-type {
  color: #6c757d;
  font-weight: 500;
  display: inline-block;
}

.file-meta-size {
  color: #495057;
  font-weight: 400;
  display: inline-block;
}

.file-meta-source {
  color: var(--primary-color);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  unicode-bidi: isolate;
  direction: ltr;
}

.file-meta-separator {
  color: #495057;
  margin: 0 0.4rem;
  display: inline-block;
  unicode-bidi: isolate;
  font-weight: 700;
  font-size: 1.1em;
  opacity: 0.8;
}
