:root {
  --app-height: 100dvh;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}
* { box-sizing: border-box; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; }
html, body { height: 100%; }
body { margin: 0; background: #0f1115; color: #e7eaf0; overflow: hidden; }
body.auth-telegram,
body.auth-web {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.auth-telegram input,
body.auth-telegram textarea,
body.auth-telegram select,
body.auth-telegram button,
body.auth-web input,
body.auth-web textarea,
body.auth-web select,
body.auth-web button {
  font-size: 17px !important;
}

#app {
  display: flex;
  height: var(--app-height);
  width: 100vw;
  min-height: 0;
  padding:
    var(--safe-top)
    var(--safe-right)
    var(--safe-bottom)
    var(--safe-left);
}

/* sidebar */
.sidebar {
  width: 320px;
  min-width: 260px;
  max-width: 360px;
  min-height: 0;
  border-right: 1px solid #232834;
  display: flex;
  flex-direction: column;
}
.me { padding: 12px; border-bottom: 1px solid #232834; font-weight: 600; }
.web-tools {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid #232834;
  margin-top: auto;
  flex-shrink: 0;
}
.web-tools-btn,
.web-tools-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 10px;
  text-decoration: none;
}
.web-tools-btn {
  border: 0;
  background: #2563eb;
  color: #fff;
  cursor: pointer;
  padding: 10px 12px;
  font: inherit;
}
.web-tools-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.web-tools-link {
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
}
.web-tools-status {
  min-height: 18px;
  font-size: 12px;
  line-height: 1.35;
  opacity: .8;
}
.clients { overflow: auto; padding: 8px; -webkit-overflow-scrolling: touch; }
.client { padding: 10px; border-radius: 10px; cursor: pointer; }
.client:hover { background: #171a22; }
.client.active { background: #1c2030; }

/* chat */
.chat { flex: 1; min-width: 0; min-height: 0; display: flex; flex-direction: column; height: 100%; }
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-bottom: 1px solid #232834; font-weight: 600;
  min-height: 48px;
  flex-shrink: 0;
}
.chat-header span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* back button (mobile) */
.back {
  display: none;
  border: 1px solid #2a3040; background: #0f1115; color: #e7eaf0;
  border-radius: 10px; padding: 6px 10px; cursor: pointer;
}

.messages {
  flex: 1; min-height: 0;
  overflow: auto; padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.bubble { max-width: min(520px, 85%); padding: 10px 12px; border-radius: 14px; line-height: 1.25; white-space: pre-wrap; overflow-wrap: anywhere; word-break: break-word; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.in { background: #171a22; align-self: flex-start; }
.out { background: #2b3a67; align-self: flex-end; }
.meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  opacity: .72;
  font-size: 12px;
  line-height: 1;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.meta-time {
  white-space: nowrap;
  letter-spacing: 0;
}
.meta-ticks {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 15px;
  height: 12px;
  margin-left: 1px;
  color: currentColor;
  letter-spacing: 0;
  line-height: 1;
}
.meta-ticks.single {
  width: 9px;
}
.meta-ticks span {
  position: absolute;
  top: 0;
  font-size: 13px;
  line-height: 12px;
}
.meta-ticks span:first-child {
  left: 0;
}
.meta-ticks.double span:last-child {
  left: 5px;
}
.in .meta {
  color: rgba(231,234,240,.72);
}
.out .meta {
  color: rgba(255,255,255,.78);
}

.media { max-width: 100%; border-radius: 10px; display: block; margin-top: 6px; }

/* composer */
.composer {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 1px solid #232834;
  align-items: flex-end;
  flex-shrink: 0;
  background: #0f1115;
}
.text {
  flex: 1; min-width: 0;
  padding: 10px 12px; border-radius: 10px; border: 1px solid #2a3040;
  background: #0f1115; color: #e7eaf0;
  font-size: 16px;
  min-height: 40px;
  max-height: 132px;
  line-height: 1.4;
  resize: none;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}
.text::-webkit-scrollbar { width: 6px; }
.text::-webkit-scrollbar-thumb { background: #2a3040; border-radius: 999px; }
.file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e7eaf0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.44 11.05l-8.49 8.49a6 6 0 01-8.49-8.49l8.49-8.48a4 4 0 015.66 5.65l-8.49 8.49a2 2 0 11-2.83-2.83l7.78-7.78'/%3E%3C/svg%3E");
}
.file-trigger:hover {
  background-color: #151922;
}
.file-trigger:active {
  transform: translateY(1px);
}
.send {
  width: 96px;
  padding: 10px 12px; border-radius: 10px; border: 0;
  background: #3b82f6; color: white; cursor: pointer;
}
.send:disabled { opacity: .5; cursor: not-allowed; }
.scheduled-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #2a3040;
  background: #151922;
  color: #e7eaf0;
  cursor: pointer;
  font: inherit;
}
.scheduled-btn:hover {
  background: #1b2230;
}
.scheduled-icon {
  font-size: 19px;
  line-height: 1;
}
.scheduled-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Mobile: sidebar becomes full screen list, chat becomes full screen view */
@media (max-width: 820px) {
  #app {
    width: 100%;
    padding:
      max(8px, var(--safe-top))
      max(8px, var(--safe-right))
      max(8px, var(--safe-bottom))
      max(8px, var(--safe-left));
  }
  .sidebar,
  .chat {
    width: 100%;
    height: 100%;
    min-width: 0;
    max-width: none;
    border-radius: 16px;
    overflow: hidden;
    background: #0f1115;
  }
  .sidebar { border-right: none; }
  .back { display: inline-flex; flex-shrink: 0; }
  .me,
  .client-search,
  .chat-header,
  .composer,
  .attach-preview {
    padding-left: 10px;
    padding-right: 10px;
  }
  .messages { padding: 10px; }
  .bubble { max-width: min(100%, 88%); }
  .chat-header { min-height: 50px; }
  .chat-header span { min-width: 0; }
  .text {
    font-size: 16px;
    min-height: 42px;
    max-height: 120px;
  }
  .file-trigger {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .send {
    width: auto;
    min-width: 88px;
    height: 42px;
    flex-shrink: 0;
  }
  .attach-preview {
    max-height: 26vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .attach-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .attach-item {
    flex: 0 0 auto;
    max-width: 72vw;
  }
  .attach-item-name { max-width: 52vw; }
  .viewer-stage,
  .viewer-media {
    max-width: 100%;
    max-height: calc(var(--app-height) - 72px);
  }
  .viewer-nav {
    top: auto;
    bottom: calc(var(--safe-bottom) + 12px);
    transform: none;
  }
  .viewer-prev { left: 12px; }
  .viewer-next { right: 12px; }

  /* by default show sidebar, hide chat */
  #app.mobile-show-chat .sidebar { display: none; }
  #app.mobile-show-chat .chat { display: flex; }
  #app:not(.mobile-show-chat) .chat { display: none; }
}

@media (max-width: 560px) {
  .bubble { max-width: 92%; }
  .album-grid { gap: 3px; }
  .video-note { width: min(220px, 72vw); height: min(220px, 72vw); }
  .audio { width: min(100%, 260px); }
  .client-search-input { font-size: 16px; }
  .web-tools {
    padding: 10px;
    gap: 10px;
  }
  .web-tools-btn,
  .web-tools-link {
    min-height: 42px;
  }
}

/* Admin page (оставил) */
.admin input { width: 420px; max-width: 95vw; padding: 10px 12px; border-radius: 10px; border: 1px solid #2a3040; background: #0f1115; color: #e7eaf0; margin: 6px 0; display: block;}
.admin button { padding: 10px 14px; border-radius: 10px; border: 0; background: #3b82f6; color: white; cursor: pointer; }
.admin pre { margin-top: 12px; background: #0b0d12; padding: 12px; border-radius: 10px; border: 1px solid #232834; }

/*стикеры*/
.sticker-lottie {
  width: 160px;
  height: 160px;
  margin-top: 6px;
}

.audio {
  width: 280px;
  max-width: 100%;
}

.video-note {
  width: 240px;
  height: 240px;
  border-radius: 9999px;
  overflow: hidden;
  object-fit: cover;
}

.attach-preview{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0b0d12;
  flex-shrink: 0;
}
.attach-name{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  opacity: .9;
}
.attach-clear{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
  cursor: pointer;
}
.bubble-text { white-space: pre-wrap; overflow-wrap: anywhere; word-break: break-word; }

.album-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.album-item{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #0b0d12;
  cursor: pointer;
}
.album-item img, .album-item video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.album-holder{
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.7;
  font-size:12px;
}

/* Viewer */
.viewer{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 9999;
  display:flex;
  align-items:center;
  justify-content:center;
}
.viewer-stage{
  max-width: 92vw;
  max-height: 92vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.viewer-media{
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 14px;
  display:none;
}
.viewer-close{
  position: fixed;
  top: calc(var(--safe-top) + 12px);
  right: calc(var(--safe-right) + 12px);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color:#e7eaf0;
  cursor:pointer;
}
.viewer-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color:#e7eaf0;
  cursor:pointer;
  opacity: .9;
}
.viewer-prev{ left: 12px; }
.viewer-next{ right: 12px; }
.viewer-nav:disabled{ opacity:.35; cursor: default; }

.attach-list{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.attach-item{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #232834;
  background: #0f1115;
  border-radius: 12px;
  max-width: 100%;
}

.attach-item-name{
  max-width: 44vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  opacity: .95;
}

.attach-item-remove{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
  cursor: pointer;
}

.client{
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.client-row{
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-name{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.client-time{
  opacity: .6;
  font-size: 12px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.client-preview{
  opacity: .75;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* ===== Chat list (native-ish) ===== */

/* убираем внутренние отступы контейнера, чтобы разделители были на всю ширину */
#clients{
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* элемент списка */
#clients .client{
  padding: 12px 12px;
  border-radius: 0;
  background: transparent;
  transition: background .12s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* разделитель как в Telegram */
#clients .client:not(:last-child){
  border-bottom: 1px solid #232834; /* тот же цвет что у бордеров в макете */
}

/* hover / active — очень мягко */
#clients .client:hover{
  background: rgba(255,255,255,0.03);
}
#clients .client.active{
  background: rgba(255,255,255,0.06);
}

/* строки */
#clients .client-row{
  display:flex;
  align-items: baseline;
  gap: 8px;
}
#clients .client-name{
  flex:1;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:600;
}
#clients .client-time{
  margin-left:auto;
  font-size:12px;
  opacity:.55;
  white-space:nowrap;
  font-variant-numeric: tabular-nums;
}
#clients .client-preview{
  margin-top:2px;
  font-size:13px;
  opacity:.75;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.client-right{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
}

.client-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  background: #3b82f6;
  color: #fff;
}
/* ===== Client search (Telegram-like) ===== */
.client-search{
  padding: 10px 12px;
  border-bottom: 1px solid #232834;
  position: relative;
}

.client-search-input{
  width: 100%;
  padding: 10px 40px 10px 12px; /* место под крестик справа */
  border-radius: 12px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
  font-size: 16px;
  outline: none;
}

.client-search-input::placeholder{
  opacity: .65;
}

.client-search-clear{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #2a3040;
  background: #0f1115;
  color: #e7eaf0;
  cursor: pointer;
}

.client-empty{
  padding: 14px 12px;
  opacity: .65;
  font-size: 13px;
}

.client-context-menu{
  position: fixed;
  z-index: 10020;
  min-width: 160px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid #2a3040;
  background: #11151d;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display: none;
}

.send-status{
  flex: 0 1 auto;
  min-width: 0;
}

.client-context-menu.visible{
  display: block;
}

.client-context-action{
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  background: transparent;
  color: #e7eaf0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.client-context-action:hover{
  background: rgba(255,255,255,0.06);
}

.client-context-action[hidden]{
  display: none;
}

.message-edit-modal{
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 10, 14, 0.64);
}

.message-edit-modal.visible{
  display: flex;
}

.message-edit-card{
  width: min(560px, 100%);
  max-width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #2a3040;
  background: #11151d;
  box-shadow: 0 18px 40px rgba(0,0,0,.42);
  overflow: hidden;
}

.message-edit-title{
  margin-bottom: 10px;
  color: #e7eaf0;
  font-weight: 700;
}

.message-edit-textarea{
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid #2a3040;
  border-radius: 14px;
  padding: 12px 14px;
  background: #0d1118;
  color: #e7eaf0;
  font: inherit;
  outline: none;
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

.message-edit-textarea:focus{
  border-color: #4a7cff;
}

.message-edit-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.schedule-datetime{
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  min-inline-size: 0;
  margin-top: 12px;
  border: 1px solid #2a3040;
  border-radius: 14px;
  padding: 12px 14px;
  background: #0d1118;
  color: #e7eaf0;
  font: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.schedule-datetime:focus{
  border-color: #4a7cff;
}

.message-edit-btn{
  border: 1px solid #2a3040;
  border-radius: 12px;
  padding: 10px 14px;
  background: #151b25;
  color: #e7eaf0;
  font: inherit;
  cursor: pointer;
}

.message-edit-btn.primary{
  border-color: #4a7cff;
  background: #2d63f6;
  color: #fff;
}

.message-edit-btn.danger{
  border-color: rgba(255,90,90,.45);
  color: #ffb3b3;
}

.message-edit-btn.primary.danger{
  border-color: rgba(255,90,90,.65);
  background: #d73535;
  color: #fff;
}

.confirm-card{
  width: min(420px, 100%);
}

.confirm-text{
  color: rgba(231,234,240,.78);
  line-height: 1.4;
}

.scheduled-list-card{
  width: min(680px, 100%);
  max-height: min(760px, 86vh);
  display: flex;
  flex-direction: column;
}

.scheduled-list-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.scheduled-list-head .message-edit-title{
  margin-bottom: 0;
  flex: 1;
}

.scheduled-close{
  width: 32px;
  height: 32px;
  border: 1px solid #2a3040;
  border-radius: 8px;
  background: #151b25;
  color: #e7eaf0;
  cursor: pointer;
  font: inherit;
}

.scheduled-list-body{
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 2px;
  -webkit-overflow-scrolling: touch;
}

.scheduled-empty{
  padding: 16px 2px;
  color: rgba(231,234,240,.7);
}

.scheduled-item{
  border: 1px solid #2a3040;
  border-radius: 8px;
  padding: 12px;
  background: #0d1118;
}

.scheduled-item-top{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.scheduled-item-time{
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.scheduled-item-kind{
  flex: 0 0 auto;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(59,130,246,.16);
  color: #bfdbfe;
  font-size: 12px;
}

.scheduled-item-preview{
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scheduled-item-files{
  margin-top: 6px;
  color: rgba(231,234,240,.64);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scheduled-item-actions{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.scheduled-item-actions .message-edit-btn{
  border-radius: 8px;
}

@media (max-width: 560px) {
  .scheduled-list-card{
    max-height: 88vh;
  }
  .scheduled-item-actions{
    justify-content: stretch;
  }
  .scheduled-item-actions .message-edit-btn{
    flex: 1 1 auto;
  }
}

.meta-edited{
  opacity: .72;
}

.back{
  position: relative;
}

.back-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  background: #3b82f6;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* ===== Upload progress (Telegram-like) ===== */
.bubble[data-uploading="1"]{
  position: relative;
}

.bubble .upload-title{
  font-size: 13px;
  opacity: .95;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bubble .upload-progress{
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  margin-top: 8px;
}

.bubble .upload-progress > .upload-bar{
  height: 100%;
  width: 0%;
  border-radius: 9999px;
  background: rgba(255,255,255,0.85);
  transition: width .08s linear;
}

.meta .meta-progress{
  margin-left: 6px;
  opacity: .85;
}
/* upload error line */
.bubble .upload-error{
  margin-top: 6px;
  font-size: 12px;
  color: #ff5a5a;
}
