@charset "UTF-8";
.standard-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: hidden;
  max-height: 100dvh;
  width: 100%;
  overflow-y: hidden;
}
.standard-layout .standard-layout__content {
  z-index: 1;
  flex: 1;
  min-width: 0;
  padding: 1rem;
  overflow-y: scroll;
  max-height: calc(100% - 2rem);
  box-sizing: border-box;
}
@media (min-width: 720px) {
  .standard-layout .standard-layout__content {
    margin: 1rem;
  }
}

.sidebar {
  box-sizing: border-box;
  padding: 1rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100vw;
  height: 100dvh;
  background-color: #0e1219;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}
.sidebar.active {
  transform: translateX(0);
}
.sidebar .sidebar__inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1px solid #3e3e45;
  width: 100%;
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  gap: 1rem;
}
.sidebar .sidebar__inner .sidebar__header-toggle {
  margin-left: auto;
}
.sidebar .sidebar__inner .sidebar__body ul {
  width: calc(100% - 2rem);
  list-style: none;
  padding-left: 0;
}
.sidebar .sidebar__inner .sidebar__body ul li {
  border-left: 2px solid transparent;
  padding: 0.5rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 1ch;
  margin-bottom: 0.5rem;
}
.sidebar .sidebar__inner .sidebar__body ul li.active {
  border-left: 2px solid #0070ff;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.sidebar .sidebar__inner .sidebar__body ul li:hover {
  background-color: rgba(255, 255, 255, 0.125);
  cursor: pointer;
  border-radius: 0.5rem;
}
@media (min-width: 960px) {
  .sidebar {
    width: 400px;
    min-width: 400px;
    position: relative;
    margin: 1rem;
    height: calc(100vh - 2rem);
    transform: translateX(0);
  }
  .sidebar .sidebar__header-toggle {
    display: none;
  }
}
.sidebar .sidebar__header {
  border-bottom: 1px solid #3e3e45;
  padding-bottom: 1rem;
}
.sidebar .sidebar__header button {
  margin-top: 2rem;
  width: 100%;
}
.sidebar .sidebar__header-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 2rem;
  align-items: center;
  gap: 1rem;
}

button {
  background-color: #1e232c;
  border: 1px solid #1e232c;
  border-radius: 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  color: #aeaeae;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  position: relative;
}
button:hover {
  background-color: rgb(19.6621621622, 22.9391891892, 28.8378378378);
}
button:active {
  transform: scale(0.98);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button.blue {
  background-color: #0070ff;
  border-color: #0070ff;
  color: white;
}
button.blue:hover {
  background-color: rgb(0, 100.8, 229.5);
}
button.blue:active {
  background-color: rgb(0, 89.6, 204);
}
button.secondary {
  background-color: transparent;
  border-color: transparent;
}
button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
button.secondary:active {
  background-color: rgba(255, 255, 255, 0.15);
}
button.small {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
button .success-popup {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
button .success-popup.show {
  animation: successPop 2s ease-out forwards;
}
button .success-popup::before {
  content: "✓ ";
  font-weight: bold;
}
button .success-popup::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #10b981;
}

@keyframes successPop {
  0% {
    transform: translateX(-50%) scale(0) translateY(10px);
    opacity: 0;
  }
  10% {
    transform: translateX(-50%) scale(1.1) translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(0.8) translateY(-10px);
    opacity: 0;
  }
}
.menubar {
  box-sizing: border-box;
  border-bottom: 1px solid #3e3e45;
  width: 100%;
  padding: 0.5rem;
  min-height: 58px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  overflow-x: hidden;
  position: sticky;
  top: 0;
  background-color: #0e1219;
  z-index: 50;
}
.menubar .menubar-column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 0;
}
.menubar .menubar-column ul {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  height: auto;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  min-width: 0;
}
.menubar .menubar-column ul h1 {
  font-size: 1rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100vw - 250px);
  min-width: 0;
}
@media (min-width: 960px) {
  .menubar .menubar-column ul h1 {
    font-size: 1.5rem;
    max-width: none;
  }
}
.menubar .menubar-column ul button {
  flex-shrink: 0;
  white-space: nowrap;
}
.menubar .menubar-column ul button:not(.blue):not(.secondary), .menubar .menubar-column ul .clickable {
  padding: 0.5rem;
  background-color: transparent;
  color: white;
  border-color: transparent;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
.menubar .menubar-column ul button:not(.blue):not(.secondary):hover, .menubar .menubar-column ul .clickable:hover {
  background-color: rgba(255, 255, 255, 0.125);
}
.menubar .zapable-logo {
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
}
@media (min-width: 960px) {
  .menubar .zapable-logo {
    display: none;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-container {
  background-color: #11151b;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #3e3e45;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #3e3e45;
}

.popup-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.popup-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.popup-close:hover {
  color: #374151;
}

.popup-body {
  padding: 20px;
  overflow-y: auto;
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
form .form__error-message {
  color: #ef4444;
  padding: 0;
  margin: 0;
}
form .form__error-message:empty {
  display: none;
}
form .input-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
form .input-group.invalid input {
  border: 1px solid #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
form .input-group .input-group__error-message {
  color: #ef4444;
  padding: 0;
  margin: 0;
}
form .input-group .input-group__error-message:empty {
  display: none;
}
form input {
  background-color: #3a3d45;
  color: white;
  border: 1px solid transparent;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
form input:focus {
  outline: none;
  background-color: rgb(69.6456692913, 73.2480314961, 82.8543307087);
  border-color: #0070ff;
  box-shadow: 0 0 0 3px rgba(0, 112, 255, 0.15);
}
form input:hover {
  background-color: rgb(64.9874015748, 68.3488188976, 77.3125984252);
}

.link-screenshot {
  position: relative;
  width: 100%;
  height: 100%;
}

/* OR set explicit height: */
/* height: 400px; */
.link-screenshot__image-container,
.link-screenshot__error {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: #11151b;
  color: #aeaeae;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
}

.link-screenshot__image-container {
  z-index: 2;
}

.link-screenshot__error {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 8px;
  padding: 1rem;
}

.link-screenshot__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  overflow: hidden;
  object-position: top;
}
.link-screenshot__image.loading {
  object-fit: contain;
  max-width: 48px;
  max-height: 48px;
  margin: auto;
}

/* Hide error by default, show when needed */
.link-screenshot__error {
  display: none;
}

.link-screenshot.has-error .link-screenshot__error {
  display: flex;
}

.link-screenshot.has-error .link-screenshot__image-container {
  display: none;
}

.chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0e1219;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: 1px solid #3e3e45;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(110.2748091603, 110.2748091603, 122.7251908397);
}

* {
  scrollbar-width: auto;
  scrollbar-color: #3e3e45 #0e1219;
}

.link-view-single {
  width: 100%;
  padding-bottom: 2rem;
}
.link-view-single .zap-view-single__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  justify-content: left;
  overflow: visible;
}
.link-view-single .zap-view-single__content .link-container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}
.link-view-single .zap-view-single__content .link-container .link {
  padding-left: 1rem;
}
.link-view-single .zap-view-single__content .preview-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.link-view-single .zap-view-single__content .preview-container:before {
  content: "Destination Preview";
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 5;
}
.link-view-single .zap-view-single__content .preview-container .image {
  z-index: 1;
  width: 100%;
  height: 100%;
}
.link-view-single .zap-view-single__content .qr-code-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 300px;
}
.link-view-single .zap-view-single__content .qr-code-container .image {
  width: 256px;
  height: 256px;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  justify-content: center;
}
.link-view-single .zap-view-single__content .widget {
  border-radius: 1rem;
  border: 1px solid #3e3e45;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
}
.link-view-single .zap-view-single__content .image-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 720px) {
  .link-view-single .zap-view-single__content .image-container-grid {
    grid-template-columns: 1fr 0.35fr;
  }
}
.link-view-single .zap-view-single__content .grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 720px) {
  .link-view-single .zap-view-single__content .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.link-view-single .zap-view-single__content .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 720px) {
  .link-view-single .zap-view-single__content .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.link-view-single.invalid .not-found__container {
  display: flex;
  min-height: 80vh;
}
.link-view-single .not-found__container {
  width: inherit;
  height: inherit;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.link-view-single .not-found__container svg {
  padding-bottom: 1rem;
  width: 128px;
  height: 128px;
}

.zaps-page {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.zaps-page table {
  border-collapse: separate;
  border-spacing: 0;
  background: #11151b;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #3e3e45;
  width: 100%;
}
.zaps-page table thead {
  background: #0e1219;
}
.zaps-page table thead td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  text-align: left;
  font-weight: 600;
  color: #aeaeae;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #3e3e45;
}
.zaps-page table thead td.short-url {
  display: none;
}
@media (min-width: 720px) {
  .zaps-page table thead td.short-url {
    display: revert;
  }
}
.zaps-page table thead td.destination-link-heading {
  display: none;
}
@media (min-width: 960px) {
  .zaps-page table thead td.destination-link-heading {
    display: revert;
  }
}
.zaps-page table tbody tr {
  border-bottom: 1px solid #3e3e45;
  transition: background 0.2s;
  cursor: pointer;
}
.zaps-page table tbody tr:hover {
  background: #1e232c;
}
.zaps-page table tbody tr:last-child {
  border-bottom: none;
}
.zaps-page table tbody tr td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: white;
}
.zaps-page table tbody tr .destination-link {
  color: #aeaeae;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 20rem;
  display: none;
}
@media (min-width: 960px) {
  .zaps-page table tbody tr .destination-link {
    display: revert;
  }
}
.zaps-page table tbody tr .short-url {
  display: none;
}
@media (min-width: 720px) {
  .zaps-page table tbody tr .short-url {
    display: revert;
  }
}
.zaps-page table tbody .empty-state {
  cursor: default;
}
.zaps-page table tbody .empty-state:hover {
  background: transparent;
}
.zaps-page table tbody .empty-state td {
  text-align: center;
  padding: 3rem 1rem;
}
.zaps-page .empty-message h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: white;
}
.zaps-page .empty-message p {
  color: #aeaeae;
  font-size: 0.875rem;
}
.zaps-page .link {
  color: #0070ff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.zaps-page .link button {
  opacity: 0;
  transition: opacity 0.2s;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #3e3e45;
  background: transparent;
  color: #aeaeae;
  cursor: pointer;
  white-space: nowrap;
}
.zaps-page .link button:hover {
  background: #1e232c;
  color: white;
}
.zaps-page tr:hover .link button {
  opacity: 1;
}

.login-view {
  min-height: 100vh;
  min-width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.login-view header {
  padding: 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 720px) {
  .login-view header {
    padding: 2rem;
  }
}
.login-view header .logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login-view header .logo-container .logo {
  background: white;
  color: #0e1219;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
}
.login-view header .logo-container .logo-text {
  font-size: 1.5rem;
  font-weight: 600;
}
.login-view .login-view__inner {
  width: 100%;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-view .login-view__inner h1, .login-view .login-view__inner p, .login-view .login-view__inner .login-view__form {
  width: 100%;
  max-width: 100%;
}
.login-view .login-view__inner h1 {
  margin-bottom: 0.5rem;
}
.login-view .login-view__inner p {
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .login-view .login-view__inner {
    padding: 1rem;
  }
  .login-view .login-view__inner h1, .login-view .login-view__inner p, .login-view .login-view__inner .login-view__form {
    max-width: 420px;
  }
  .login-view .login-view__inner .login-view__form {
    border: 1px solid #3e3e45;
    border-radius: 1rem;
    padding: 2rem;
  }
}
.login-view footer {
  width: 100%;
  text-align: center;
  color: #aeaeae;
  font-size: 0.875rem;
  padding: 0;
}
.login-view footer p {
  padding: 2rem;
  margin: 0;
}

.my-account {
  padding-top: 2rem;
}
.my-account .widget {
  border-radius: 1rem;
  border: 1px solid #3e3e45;
  padding: 1rem;
}
.my-account .widget h2 {
  color: #aeaeae;
}

.docs-page .docs-section {
  display: grid;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 2rem;
}
.docs-page .docs-section .docs-section__section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.docs-page .docs-section .docs-section__header {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: -1rem;
}
.docs-page .docs-section .docs-section__header h3 {
  font-size: 2rem;
}
.docs-page .docs-section .docs-section__header span {
  background: #0070ff;
  color: white;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bolder;
}
.docs-page .docs-section p, .docs-page .docs-section ul, .docs-page .docs-section li {
  color: rgb(199.5, 199.5, 199.5);
}
.docs-page .docs-section img, .docs-page .docs-section .screenshot {
  width: 100%;
  background: linear-gradient(135deg, #1f2937, #374151);
  border: 1px solid #374151;
  border-radius: 8px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  align-self: center;
}
@media (min-width: 960px) {
  .docs-page .docs-section img, .docs-page .docs-section .screenshot {
    width: 75%;
  }
}

body, .vera-router-view {
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background-color: #0e1219;
  margin: 0;
  padding: 0;
  color: white;
  font-family: "Geist", sans-serif;
}

code, pre {
  font-family: "Geist Mono", monospace;
}

.zapable-logo {
  background: white;
  color: black;
  padding: 0.5rem;
  border-radius: 0.5rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.clickable {
  cursor: pointer;
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=app.css.map */
