/* Base Styles */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f0f4ff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --background-color: #ffffff;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
	  
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 600;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--background-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .logo {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 5px 5px 10px #d9d9d9, -5px -5px 10px #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .logo::before {
    content: "🔄";
    font-size: 1.1rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
  }
  
  .logo:hover::before {
    transform: rotate(180deg);
  }
  
  .logo:active {
    transform: scale(0.95);
  }
  
  /* Add a pulsing animation to draw attention */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
  }
  
  .logo {
    animation: pulse 2s infinite;
  }
  
  /* Add a tooltip */
  .logo::after {
    content: "Кликнете за промена на речникот";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .logo:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
  }
  
  /* Add a subtle bounce animation on page load */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
  }
  
  .logo {
    animation: bounce 2s ease infinite;
    animation-delay: 1s;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
  }
  
  nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  nav a:hover:after,
  nav a.active:after {
    width: 100%;
  }
  
  nav a.active {
    color: var(--primary-color);
  }
  
  /* Main Content */
  main {
    flex: 1;
    padding: 2rem;
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 4rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero p {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
  
  /* Search Box */
  .search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
  }
  
  .search-box {
    display: flex;
    position: relative;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
  }
  
  .search-box.focused {
    border-color: var(--primary-color);
    transform: translateY(-2px);
  }
  
  .search-box input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    outline: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
  
  .search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .search-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  }
  
  /* Add these styles for the autocomplete functionality */
  .autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: none;
    margin-top: 5px;
  }
  
  .autocomplete-item {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .autocomplete-item:hover {
    background-color: var(--secondary-color);
  }
  
  .autocomplete-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
  
  /* Add these styles for the enhanced autocomplete functionality */
  
  /* Add loading indicator styles */
  .autocomplete-loading,
  .autocomplete-no-results,
  .autocomplete-error {
    padding: 0.75rem 1.5rem;
    text-align: center;
    color: var(--text-light);
  }
  
  .autocomplete-error {
    color: #e53e3e;
  }
  
  /* Add active state for keyboard navigation */
  .autocomplete-item.active {
    background-color: var(--secondary-color);
  }
  
  /* Add loading state for search button */
  .search-btn.loading {
    position: relative;
    color: transparent;
  }
  
  .search-btn.loading::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Results Section */
  .results {
    max-width: 800px;
    margin: 3rem auto;
  }
  
  .results h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .results h3::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .results h3[data-dict="en_mk"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7V5a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M17 3h2a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M21 17v2a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M7 21H5a2 2 0 0 1-2-2v-2'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
  }
  
  .results h3[data-dict="mk_en"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
  }
  
  .results h3[data-dict="tolkoven"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E");
  }
  
  .results-container {
    display: grid;
    gap: 1.5rem;
  }
  
  .result-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    display: grid;
    gap: 1rem;
  }
  
  .result-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .result-card .term {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .result-card .term::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .result-card .ipa {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--secondary-color);
    border-radius: var(--radius-sm);
    width: fit-content;
  }
  
  .result-card .ipa::before {
    content: "🔊";
    font-style: normal;
  }
  
  .result-card .pos {
    color: var(--primary-color);
    font-style: italic;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--secondary-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
  }
  
  .result-card .definition {
    margin: 1rem 0;
    white-space: pre-line;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--primary-color);
  }
  
  .result-card .phrase {
    background-color: var(--secondary-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    white-space: pre-line;
    line-height: 1.6;
    margin-top: 1rem;
  }
  
  .result-card .phrase span {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
  }
  
  .result-card .derivatives,
  .result-card .etymology {
    background-color: var(--secondary-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-top: 1rem;
    white-space: pre-line;
    line-height: 1.6;
  }
  
  .result-card .derivatives span,
  .result-card .etymology span {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
  }
  
  .result-card .derivatives::before {
    content: "🌱";
    margin-right: 0.5rem;
  }
  
  .result-card .etymology::before {
    content: "📚";
    margin-right: 0.5rem;
  }
  
  .no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
  }
  
  /* Add this to your existing CSS file */
  
  .error-message {
    text-align: center;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    border-radius: var(--radius-md);
    color: #b91c1c;
  }
  
  .error-message p {
    margin: 0;
  }
  
  /* Features Section */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
  }
  
  .feature {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    background-color: var(--secondary-color);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }
  
  .feature-icon svg {
    color: var(--primary-color);
  }
  
  .feature h3 {
    margin-bottom: 0.75rem;
  }
  
  .feature p {
    color: var(--text-light);
  }
  
  /* Footer */
  footer {
    background-color: #f8fafc;
    padding: 3rem 2rem 1rem;
    margin-top: auto;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo .logo {
    align-self: flex-start;
  }
  
  .footer-logo p {
    color: var(--text-light);
  }
  
  .footer-links h4,
  .footer-newsletter h4 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-links h4:after,
  .footer-newsletter h4:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: var(--text-light);
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .footer-newsletter form {
    display: flex;
    gap: 0.5rem;
  }
  
  .footer-newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
  }
  
  .footer-newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .footer-newsletter button:hover {
    background-color: var(--primary-dark);
  }
  
  /* Newsletter message styles */
  .newsletter-message {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }
  
  .newsletter-message.success {
    background-color: #dcfce7;
    color: #166534;
    border-left: 3px solid #22c55e;
  }
  
  .newsletter-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 3px solid #ef4444;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
  
    nav ul {
      gap: 1rem;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .search-box input {
      padding: 1rem;
      font-size: 1rem;
    }
  
    .footer-newsletter form {
      flex-direction: column;
    }
  
    .result-card {
      padding: 1rem;
    }
  
    .result-card .term {
      font-size: 1.25rem;
    }
  
    .result-card .definition {
      padding-left: 0.75rem;
    }
  
    .result-card .phrase,
    .result-card .derivatives,
    .result-card .etymology {
      padding: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .feature {
      padding: 1.5rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
    }
  
    .result-card {
      padding: 0.75rem;
    }
  
    .result-card .term {
      font-size: 1.1rem;
    }
  
    .result-card .ipa,
    .result-card .pos {
      font-size: 0.8rem;
    }
  
    .result-card .definition {
      font-size: 0.9rem;
      padding-left: 0.5rem;
    }
  
    .result-card .phrase,
    .result-card .derivatives,
    .result-card .etymology {
      font-size: 0.85rem;
      padding: 0.5rem;
    }
  }
  
  /* Remove dictionary selector styles */
  .dictionary-selector {
    display: none;
  }
  
  /* About Page Styles */
  .about-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .author-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .author-card:hover {
    transform: translateY(-5px);
  }
  
  .author-card h2 {
    color: #2c3e50;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 1.8rem;
  }
  
  .author-content {
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .author-image {
    flex: 0 0 200px;
  }
  
  .author-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Dictionaries Page Styles */
  .dictionaries-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .dictionary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .dictionary-card:hover {
    transform: translateY(-5px);
  }
  
  .dictionary-card h2 {
    color: #2c3e50;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #eee;
    font-size: 1.8rem;
  }
  
  .dictionary-content {
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .dictionary-image {
    flex: 0 0 300px;
  }
  
  .dictionary-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .dictionary-info {
    flex: 1;
  }
  
  .dictionary-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .dictionary-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .dictionary-features li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .dictionary-features li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .author-content,
    .dictionary-content {
      flex-direction: column;
    }
  
    .author-image,
    .dictionary-image {
      flex: 0 0 auto;
      margin-bottom: 1rem;
    }
  
    .author-image img,
    .dictionary-image img {
      max-width: 100%;
    }
  }
  
  /* Add these styles for multi-dictionary results */
  .dictionary-results {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .dictionary-results h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .dictionary-results h4::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .dictionary-results[data-dict="en_mk"] h4::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7V5a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M17 3h2a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M21 17v2a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M7 21H5a2 2 0 0 1-2-2v-2'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
  }
  
  .dictionary-results[data-dict="mk_en"] h4::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
  }
  
  .dictionary-results[data-dict="tolkoven"] h4::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E");
  }
  