.bottom-nav[data-v-0a86ca5c] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(28, 28, 30, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}
.nav-item[data-v-0a86ca5c] {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 8px 0;
  width: 25%;
  transition: color 0.3s ease;
}
.nav-item i[data-v-0a86ca5c] {
  font-size: 24px;
  margin-bottom: 4px;
}
.nav-item span[data-v-0a86ca5c] {
  font-size: 12px;
}
.nav-item.active[data-v-0a86ca5c] {
  color: #fff;
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #8774e1;
  --primary-dark-color: #6b5bb8;
  --background-color: #1c1c1e;
  --surface-color: #2c2c2e;
  --text-color: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background-color);
  color: var(--text-color);
}
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-app {
  min-height: 100vh;
  background: #f9fafb;
  color: #222;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  font-size: 1.2rem;
  color: var(--text-secondary);
}
.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 1rem;
  text-align: center;
  color: #ff453a;
  gap: 1rem;
}
.error .retry-button {
  padding: 0.5rem 1rem;
  background-color: #ff453a;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
}
.error .retry-button:hover {
  background-color: #ff3b30;
}
.main-scroll {
  overflow-y: auto;
  max-height: 100vh;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
  width: 100vw;
}.levels-view[data-v-92f27261] {
  padding: 20px;
  padding-bottom: 72px;
  min-height: 100vh;
  background-color: var(--background-color);
}
.header[data-v-92f27261] {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.back-button[data-v-92f27261] {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.back-button[data-v-92f27261]:hover {
  background-color: var(--surface-color);
}
.title[data-v-92f27261] {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
  color: var(--text-color);
}
.levels-list-wrapper[data-v-92f27261] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-block[data-v-92f27261] {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 0;
  text-align: center;
  border: 1px solid var(--border-color);
}
.levels-list[data-v-92f27261] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 4px;
}
.level-button[data-v-92f27261] {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--text-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-color);
}
.level-button[data-v-92f27261]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.level-button .level-header[data-v-92f27261] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.level-button .level-header .level-number[data-v-92f27261] {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}
.level-button.disabled[data-v-92f27261] {
  background: var(--surface-color);
  color: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}
.level-button.disabled[data-v-92f27261]:hover {
  transform: none;
}.energy-display[data-v-4007d304] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface-color);
  border-radius: 12px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  position: relative;
}
.energy-display.premium[data-v-4007d304] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}
.energy-display i[data-v-4007d304] {
  font-size: 20px;
}
.energy-display .energy-value[data-v-4007d304] {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.energy-display .energy-value.energy-changed[data-v-4007d304] {
  transform: scale(1.2);
  color: #ff4444;
}
.energy-display .premium-badge[data-v-4007d304] {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}.test-view[data-v-bf271bcc] {
  min-height: 100vh;
  padding: 15px;
  padding-bottom: 80px;
  background: var(--background-color);
}
.session-stats-block[data-v-bf271bcc] {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.session-stats[data-v-bf271bcc] {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.stats-item[data-v-bf271bcc] {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.stats-label[data-v-bf271bcc] {
  color: var(--text-secondary);
  font-size: 12px;
}
.stats-value[data-v-bf271bcc] {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
}
.question-container[data-v-bf271bcc] {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  text-align: center;
}
.question-text[data-v-bf271bcc] {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 30px;
}
.sentence-chars[data-v-bf271bcc] {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.char-draggable[data-v-bf271bcc] {
  background: #f7fafc;
  color: #222;
  border-radius: 10px;
  padding: 0px 0px;
  font-size: 20px;
  font-weight: 600;
  cursor: grab;
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  margin: 0 2px;
  min-width: 60px;
  min-height: 60px;
  max-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s, border-color 0.2s, transform 0.15s;
}
.char-draggable.dragging[data-v-bf271bcc] {
  opacity: 0.7;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transform: scale(1.12);
  z-index: 2;
}
.char-draggable.empty-placeholder[data-v-bf271bcc] {
  background: transparent;
  border: 2px dashed #bdbdbd;
  box-shadow: none;
  color: transparent;
  cursor: default;
}
.char-draggable.selected[data-v-bf271bcc] {
  border: 2px solid #4CAF50;
  box-shadow: 0 0 0 2px #A5D6A7;
  background: #e8f5e9;
}
.drop-cell[data-v-bf271bcc] {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.drop-cell.can-drop[data-v-bf271bcc] {
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px #A5D6A7;
  cursor: pointer;
}
.correct-cell[data-v-bf271bcc] {
  border-color: #4CAF50 !important;
  background: #e8f5e9 !important;
}
.wrong-cell[data-v-bf271bcc] {
  border-color: #FF5252 !important;
  background: #ffebee !important;
}
.translation-block[data-v-bf271bcc] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 24px 0;
  min-height: 44px;
  position: relative;
}
.translation-text-block[data-v-bf271bcc] {
  background: #383838;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #616161;
  padding: 12px 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #4CAF50;
  min-width: 120px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.fade-in-enter-active[data-v-bf271bcc], .fade-in-leave-active[data-v-bf271bcc] {
  transition: opacity 0.3s;
}
.fade-in-enter-from[data-v-bf271bcc], .fade-in-leave-to[data-v-bf271bcc] {
  opacity: 0;
}
.fade-in-enter-to[data-v-bf271bcc], .fade-in-leave-from[data-v-bf271bcc] {
  opacity: 1;
}
.translation-text[data-v-bf271bcc] {
  font-size: 18px;
  font-weight: 500;
  color: #4CAF50;
  transition: none;
}
.translation-text.hidden[data-v-bf271bcc] {
  opacity: 0;
  visibility: hidden;
}
.result-actions[data-v-bf271bcc] {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.action-button[data-v-bf271bcc] {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.action-button.next[data-v-bf271bcc] {
  background: #4CAF50;
  color: white;
}
.action-button.next.disabled[data-v-bf271bcc] {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}
.action-button.finish[data-v-bf271bcc] {
  background: #FF5252;
  color: white;
}
.action-button.apply[data-v-bf271bcc] {
  background: #4CAF50;
  color: white;
}
.action-button[data-v-bf271bcc]:disabled,
.disabled[data-v-bf271bcc] {
  opacity: 0.2;
  pointer-events: none;
  background: #9e9e9e;
}
.drag-preview[data-v-bf271bcc] {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: #fff;
  color: #222;
  border-radius: 10px;
  min-width: 60px;
  min-height: 60px;
  max-width: 64px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translate(-50%, -50%) scale(1.12);
  transition: box-shadow 0.2s, transform 0.15s;
}
.sentence-drop[data-v-bf271bcc] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: center !important;
}:root {
  --tg-theme-bg-color: #ffffff;
  --tg-theme-text-color: #000000;
  --tg-theme-hint-color: #999999;
  --tg-theme-link-color: #2481cc;
  --tg-theme-button-color: #2481cc;
  --tg-theme-button-text-color: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--tg-theme-bg-color);
  color: var(--tg-theme-text-color);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

a {
  color: var(--tg-theme-link-color);
  text-decoration: none;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
} .icon-home::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A90E2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-level::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2350C878' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'%3E%3C/path%3E%3Cpath d='M2 17l10 5 10-5'%3E%3C/path%3E%3Cpath d='M2 12l10 5 10-5'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-profile::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-trophy::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9H4.5a2.5 2.5 0 0 1 0-5H6'%3E%3C/path%3E%3Cpath d='M18 9h1.5a2.5 2.5 0 0 0 0-5H18'%3E%3C/path%3E%3Cpath d='M4 22h16'%3E%3C/path%3E%3Cpath d='M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22'%3E%3C/path%3E%3Cpath d='M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22'%3E%3C/path%3E%3Cpath d='M18 2H6v7a6 6 0 0 0 12 0V2Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-calendar::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B59B6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-star::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F39C12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-book::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E74C3C' 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%3C/path%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/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-energy::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Дополнительные иконки */
.icon-minus::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E74C3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-refresh::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BCD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'%3E%3C/polyline%3E%3Cpolyline points='1 20 1 14 7 14'%3E%3C/polyline%3E%3Cpath d='M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-arrow-left::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A90E2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-arrow-right::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A90E2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-error::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E74C3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-empty::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M8 12h8'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-infinity::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.828 10.172a4 4 0 0 0-5.656 0L4 12l4.172 1.828a4 4 0 0 0 5.656 0L20 12l-4.172-1.828a4 4 0 0 0-5.656 0L4 12l4.172 1.828a4 4 0 0 0 5.656 0L20 12l-4.172-1.828z'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-check::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.icon-lock::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B9B9B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='12' cy='16' r='1'%3E%3C/circle%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
} 