/* Site layout (extracted from layouts/app.blade.php) */

.logout-form-inline {
  display: inline;
}

.site-footer.custom-footer .footer-content-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 2.2rem 0 1.2rem 0;
}

.footer-brand-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.footer-brand-logo {
  border-radius: 10px;
}

.footer-brand-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #ffe082;
  letter-spacing: 1px;
}

.footer-brand-desc {
  color: #fff;
  font-size: 1.01rem;
  margin-bottom: 1.1rem;
}

.footer-stats-row {
  display: flex;
  gap: 0.7rem;
}

.footer-stat-num {
  font-weight: bold;
  color: #ffe082;
  font-size: 1.1rem;
}

.footer-stat-label {
  font-size: 0.93rem;
  color: #fff;
}

.footer-col-flex-sm {
  flex: 1 1 150px;
  min-width: 140px;
}

.footer-col-flex-lg {
  flex: 1 1 180px;
  min-width: 150px;
}

.footer-search-form-mt {
  margin-top: 1em;
  display: flex;
  gap: 0.4em;
}

.footer-search-input {
  border-radius: 1em;
  border: 1px solid #e6c97a;
  padding: 0.4em 0.9em;
  font-size: 0.97em;
}

.footer-search-submit {
  background: #ffe082;
  color: #19335c;
  border: none;
  border-radius: 1em;
  padding: 0.4em 1.1em;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.97em;
}

.footer-social-row {
  margin-top: 1.1em;
  display: flex;
  gap: 0.7em;
}

.footer-social-link--whatsapp {
  color: #25d366;
  font-size: 1.5em;
}

.footer-social-link--facebook {
  color: #1877f3;
  font-size: 1.5em;
}

.footer-social-link--telegram {
  color: #229ed9;
  font-size: 1.5em;
}

.footer-bottom-bar {
  border-top: 1px solid #2d3a4a;
  margin-top: 1.5rem;
  padding: 0.7rem 0 0.2rem 0;
  text-align: center;
  color: #bfc9d1;
  font-size: 0.97rem;
}

.footer-bottom-bar a {
  color: #ffe082;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer.custom-footer {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
    overflow-x: hidden;
    text-align: center;
  }

  .site-footer.custom-footer .footer-content-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: min(100%, calc(100vw - 1rem));
    max-width: 100%;
    padding: 1.75rem 0 0.75rem;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .site-footer.custom-footer .footer-col {
    width: 100%;
    max-width: 24rem;
    min-width: 0;
    margin: 0;
    text-align: center;
  }

  .footer-brand-row,
  .footer-stats-row,
  .footer-social-row {
    justify-content: center;
  }

  .footer-brand-row {
    flex-direction: row-reverse;
  }

  .footer-brand-desc {
    max-width: 22rem;
    margin-inline: auto;
    line-height: 1.7;
  }

  .footer-stats-row {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .footer-stat {
    min-width: 5.2rem;
    margin: 0;
  }

  .site-footer.custom-footer .footer-title {
    display: inline-block;
    margin-bottom: 0.9rem;
  }

  .site-footer.custom-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
  }

  .site-footer.custom-footer .footer-links li,
  .site-footer.custom-footer .footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center !important;
    gap: 0.5rem;
    max-width: 100%;
    text-align: center !important;
    line-height: 1.5;
  }

  .site-footer.custom-footer .footer-links li {
    overflow-wrap: anywhere;
  }

  .footer-col:last-child,
  .footer-col:last-child .footer-links,
  .footer-col:last-child .footer-links li,
  .footer-col:last-child .footer-links li:first-child {
    text-align: center;
    justify-content: center;
  }

  .footer-search-form-mt {
    width: min(100%, 22rem);
    margin: 1rem auto 0;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-search-input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-search-submit {
    flex: 0 0 3.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-social-row {
    gap: 0.9rem;
    margin-top: 1rem;
  }

  .footer-bottom-bar {
    width: min(100%, calc(100vw - 1rem));
    margin-inline: auto;
    line-height: 1.6;
    padding-bottom: 0.5rem;
  }
}

.policy-modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(30, 40, 60, 0.55);
  align-items: center;
  justify-content: center;
}

.policy-modal-overlay.is-open {
  display: flex;
}

.policy-modal-inner {
  background: #fff;
  max-width: 95vw;
  width: 420px;
  border-radius: 13px;
  box-shadow: 0 8px 32px rgba(30, 40, 60, 0.18);
  padding: 2.2em 1.5em 1.5em 1.5em;
  position: relative;
  text-align: right;
}

.policy-modal-close-btn {
  position: absolute;
  left: 1em;
  top: 1em;
  background: #ffe082;
  color: #19335c;
  border: none;
  border-radius: 50%;
  width: 2.1em;
  height: 2.1em;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffe08255;
}

.policy-modal-title-text {
  font-size: 1.25em;
  font-weight: bold;
  color: #19335c;
  margin-bottom: 0.7em;
}

.policy-modal-body-text {
  font-size: 1.05em;
  color: #222;
  line-height: 1.8;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.notification-bell {
  position: relative;
  z-index: 50;
}

.notification-bell__button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 51, 92, 0.16);
  border-radius: 50%;
  background: #fff;
  color: #19335c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(25, 51, 92, 0.08);
}

.site-header .notification-bell__button i {
  margin: 0;
  line-height: 1;
}

.notification-bell__button:hover,
.notification-bell.is-open .notification-bell__button {
  background: #fff7db;
  border-color: #e6c97a;
}

.notification-bell__badge {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d93636;
  color: #fff;
  font-size: 0.72rem;
  line-height: 20px;
  text-align: center;
  font-weight: 700;
}

.notification-bell__badge.is-hidden {
  display: none;
}

.notification-bell__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(360px, 92vw);
  max-height: 460px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 51, 92, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(25, 51, 92, 0.18);
}

.notification-bell.is-open .notification-bell__dropdown {
  display: block;
}

.notification-bell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eef1f6;
  color: #19335c;
}

.notification-bell__head button,
.notifications-page__mark {
  border: 0;
  background: transparent;
  color: #2764a8;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.2rem;
}

.notification-bell__list {
  max-height: 338px;
  overflow-y: auto;
}

.user-menu .notification-bell__item,
.notification-bell__item,
.notifications-page__item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: #26344d;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
}

.user-menu .notification-bell__item,
.notification-bell__item {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f0f2f6;
  background: #fff;
  position: relative;
}

.user-menu .notification-bell__item:focus,
.user-menu .notification-bell__item:hover,
.notification-bell__item:hover,
.notifications-page__item:hover {
  background: #f4f8fc;
  color: #19335c;
  box-shadow: none;
}

/* Read: neutral row + muted text so unread rows read as “active” */
.user-menu .notification-bell__item:not(.is-unread),
.notification-bell__item:not(.is-unread),
.notifications-page__item:not(.is-unread) {
  background: #f7f8fa;
}

.user-menu .notification-bell__item:not(.is-unread):hover,
.notification-bell__item:not(.is-unread):hover,
.notifications-page__item:not(.is-unread):hover {
  background: #eef1f5;
}

.user-menu .notification-bell__item:not(.is-unread) .notification-bell__title,
.notification-bell__item:not(.is-unread) .notification-bell__title,
.notifications-page__item:not(.is-unread) .notifications-page__title {
  font-weight: 600;
  color: #5c6c7d;
}

.user-menu .notification-bell__item:not(.is-unread) .notification-bell__message,
.notification-bell__item:not(.is-unread) .notification-bell__message,
.notifications-page__item:not(.is-unread) .notifications-page__message {
  color: #8b96a3;
}

.user-menu .notification-bell__item:not(.is-unread) .notification-bell__time,
.notification-bell__item:not(.is-unread) .notification-bell__time,
.notifications-page__item:not(.is-unread) .notifications-page__time {
  color: #a8b0bb;
}

.user-menu .notification-bell__item.is-unread,
.notification-bell__item.is-unread,
.notifications-page__item.is-unread {
  background: linear-gradient(90deg, #f0f7ff 0%, #dbeafe 100%);
  border-bottom-color: rgba(27, 86, 168, 0.12);
}

.user-menu .notification-bell__item.is-unread:hover,
.notification-bell__item.is-unread:hover,
.notifications-page__item.is-unread:hover {
  background: linear-gradient(90deg, #e3f0ff 0%, #cfe5fc 100%);
}

.user-menu .notification-bell__item.is-unread:focus,
.user-menu .notification-bell__item.is-unread:focus-visible,
.notification-bell__item.is-unread:focus,
.notification-bell__item.is-unread:focus-visible,
.notifications-page__item.is-unread:focus,
.notifications-page__item.is-unread:focus-visible {
  background: linear-gradient(90deg, #e3f0ff 0%, #cfe5fc 100%);
  outline: 2px solid #0b57d0;
  outline-offset: -2px;
}

.user-menu .notification-bell__item:not(.is-unread):focus,
.user-menu .notification-bell__item:not(.is-unread):focus-visible,
.notification-bell__item:not(.is-unread):focus,
.notification-bell__item:not(.is-unread):focus-visible,
.notifications-page__item:not(.is-unread):focus,
.notifications-page__item:not(.is-unread):focus-visible {
  background: #eef1f5;
}

.notification-bell__item.is-unread::before,
.notifications-page__item.is-unread::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
  background: #0b57d0;
  box-shadow: -2px 0 8px rgba(11, 87, 208, 0.35);
}

.notification-bell__icon,
.notifications-page__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e9ef;
  color: #778899;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notification-bell__item.is-unread .notification-bell__icon,
.notifications-page__item.is-unread .notifications-page__icon {
  background: #b6d7ff;
  color: #064299;
  box-shadow: inset 0 0 0 1px rgba(6, 66, 153, 0.12);
}

.notification-bell__body,
.notifications-page__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.notification-bell__title,
.notifications-page__title {
  font-weight: 700;
  color: #122334;
}

.notification-bell__item.is-unread .notification-bell__title,
.notifications-page__item.is-unread .notifications-page__title {
  color: #041526;
}

.notification-bell__message,
.notifications-page__message {
  color: #4a5a6b;
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notification-bell__time,
.notifications-page__time {
  color: #66788a;
  font-size: 0.78rem;
  direction: rtl;
  unicode-bidi: plaintext;
}

.notification-bell__empty {
  padding: 1.2rem;
  color: #6d7788;
  text-align: center;
}

.user-menu .notification-bell__all,
.notification-bell__all {
  display: block;
  padding: 0.8rem 1rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #2764a8;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
}

.user-menu .notification-bell__all:hover,
.notification-bell__all:hover {
  color: #fff;
  background: #19335c;
}

.notifications-page {
  padding: 8rem 0 3rem;
  background: #f7f9fc;
  min-height: 70vh;
}

.notifications-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.notifications-page__head h1 {
  color: #19335c;
  font-size: 1.8rem;
  margin: 0;
}

.notifications-page__list {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 8px;
  overflow: hidden;
}

.notifications-page__item {
  padding: 1rem;
  border-bottom: 1px solid #eef1f6;
}

.notifications-page__empty {
  padding: 2rem;
  text-align: center;
  color: #6d7788;
}

.notifications-page__pagination {
  margin-top: 1rem;
}

.mobile-bottom-nav {
  display: none;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-header .header-content {
    min-height: 78px;
    padding: 0.45rem 0.75rem;
    gap: 0.55rem;
  }

  .site-header .logo {
    flex: 0 0 auto;
  }

  .site-header .logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .site-header .nav-bar {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.25rem;
    padding: 0.25rem 0.55rem;
    justify-content: center;
    box-shadow: none;
  }

  .site-header .nav-bar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .site-header .nav-bar li {
    flex: 0 1 auto;
  }

  .site-header .nav-bar li a,
  .site-header .nav-bar a {
    padding: 0.45rem 0.65rem;
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    letter-spacing: 0;
  }

  .site-header .login-btn {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header .user-menu {
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .site-header .notification-bell__button {
    width: 36px;
    height: 36px;
  }

  .site-header .user-menu > a,
  .site-header .logout-btn,
  .site-header .login-btn > a {
    min-height: 36px;
    padding: 0.42rem 0.6rem;
    font-size: 0.78rem;
    line-height: 1.1;
    border-radius: 8px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .user-menu {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .notification-bell__dropdown {
    position: fixed;
    top: 82px;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    max-width: none;
    max-height: min(70vh, 520px);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(25, 51, 92, 0.24);
  }

  .notification-bell__head {
    padding: 0.75rem 0.9rem;
    gap: 0.5rem;
  }

  .notification-bell__head strong {
    font-size: 1rem;
    white-space: nowrap;
  }

  .notification-bell__head button {
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
  }

  .notification-bell__list {
    max-height: calc(min(70vh, 520px) - 104px);
  }

  .user-menu .notification-bell__item,
  .notification-bell__item,
  .notifications-page__item {
    gap: 0.65rem;
    align-items: flex-start;
  }

  .user-menu .notification-bell__item,
  .notification-bell__item {
    padding: 0.85rem 0.85rem 0.85rem 1rem;
  }

  .notification-bell__icon,
  .notifications-page__icon {
    width: 32px;
    height: 32px;
    margin-top: 0.15rem;
  }

  .notification-bell__body,
  .notifications-page__body {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: right;
  }

  .notification-bell__title,
  .notifications-page__title {
    font-size: 0.94rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .notification-bell__message,
  .notifications-page__message {
    display: block;
    font-size: 0.82rem;
    line-height: 1.55;
    white-space: normal;
  }

  .notification-bell__time,
  .notifications-page__time {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .notifications-page {
    padding: 6rem 0.75rem 7rem;
    overflow-x: hidden;
  }

  .notifications-page .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .notifications-page__head {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .notifications-page__head h1 {
    font-size: 1.45rem;
  }

  .notifications-page__mark {
    align-self: center;
  }

  .notifications-page__list {
    border-radius: 14px;
  }

  .notifications-page__item {
    padding: 0.95rem;
  }
}

/* Auth header mobile organization */
@media (max-width: 900px) {
  .site-header {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .site-header .header-content {
    min-height: 74px;
    padding: 0.45rem 0.85rem;
    gap: 0.65rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .site-header .logo {
    order: 0;
    grid-column: 1;
    justify-self: start;
    min-width: 0;
  }

  .site-header .logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
  }

  .site-header .login-btn {
    order: 0;
    grid-column: 2;
    justify-self: end;
    width: auto !important;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .site-header .login-btn:hover,
  .site-header .login-btn:focus {
    background: transparent;
    box-shadow: none;
  }

  .site-header .user-menu {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    max-width: 100%;
  }

  .site-header .user-menu > a,
  .site-header .logout-btn,
  .site-header .login-btn > a {
    min-height: 38px;
    margin: 0;
    padding: 0.42rem 0.72rem;
    border-radius: 8px;
    font-size: 0.86rem;
    line-height: 1.1;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(25, 51, 92, 0.12);
  }

  .site-header .login-btn > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #19335c;
    color: #fff !important;
    border: 1px solid rgba(25, 51, 92, 0.12);
    min-width: 108px;
    font-weight: 800;
    text-decoration: none;
  }

  .site-header .login-btn > a:hover,
  .site-header .login-btn > a:focus {
    background: #2176ff;
    color: #fff !important;
  }

  .site-header .logout-btn {
    gap: 0.35rem;
  }

  .site-header .dashboard-link i,
  .site-header .logout-btn i {
    margin: 0;
  }

  .site-header .notification-bell {
    flex: 0 0 auto;
  }

  .site-header .notification-bell__button {
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 8px rgba(25, 51, 92, 0.12);
  }

  .site-header .notification-bell__dropdown {
    position: fixed;
    top: 82px;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    max-height: calc(100vh - 100px);
  }

  .site-header .nav-bar {
    display: none !important;
  }

  .site-header .floating-menu-btn {
    display: none !important;
  }

  .site-header .floating-menu-btn i {
    left: auto;
    position: static;
    line-height: 1;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right));
    left: max(0.75rem, env(safe-area-inset-left));
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    z-index: 9997;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    min-height: 64px;
    padding: 0.45rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(25, 51, 92, 0.12);
    box-shadow: 0 14px 34px rgba(25, 51, 92, 0.22);
    backdrop-filter: blur(14px);
    direction: rtl;
  }

  .mobile-bottom-nav__item {
    min-width: 0;
    min-height: 52px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    color: #19335c;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.72rem;
    line-height: 1.1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .mobile-bottom-nav__item i {
    font-size: 1.1rem;
    line-height: 1;
  }

  .mobile-bottom-nav__item span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-nav__item:hover,
  .mobile-bottom-nav__item:focus,
  .mobile-bottom-nav__item.is-active {
    background: linear-gradient(135deg, #2176ff 0%, #19335c 100%);
    color: #fff;
    transform: translateY(-1px);
  }

  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .site-header .header-content {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .site-header .logo img {
    width: 56px;
    height: 56px;
  }

  .site-header .user-menu {
    gap: 0.35rem;
  }

  .site-header .user-menu > a,
  .site-header .logout-btn,
  .site-header .login-btn > a {
    min-height: 34px;
    padding: 0.38rem 0.58rem;
    font-size: 0.78rem;
  }

  .site-header .notification-bell__button {
    width: 34px;
    height: 34px;
  }

  .mobile-bottom-nav {
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
    min-height: 60px;
  }

  .mobile-bottom-nav__item {
    min-height: 49px;
    border-radius: 12px;
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .site-header .user-menu > a,
  .site-header .logout-btn {
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .site-header .dashboard-link span,
  .site-header .logout-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
