@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=Roboto:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

:root {
  --primary: #22257c;
  --accent: #454798;
  --text: rgba(0, 0, 0, 0.87);
  --text-muted: #63647a;
  --banner-bg: #f4f5fa;
  --verified: #1972bc;
  --linkedin: #0a66c2;
  --content-max: 1300px;
  --detail-width: 360px;
  --wide-margin: 32px;
  --default-margin: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* App shell */
.app-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: 57px;
  min-height: 57px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.site-header .content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--default-margin);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .branding-logo {
  height: 27px;
  width: auto;
}

.responsive-menu-container {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 4px;
  min-height: 36px;
}

.btn-header:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn-sign-in {
  color: var(--primary);
  font-weight: 600;
}

.sign-in-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e0e0e4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.sign-in-avatar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Main */
main {
  flex: 1 0 auto;
  padding-bottom: var(--wide-margin);
}

.credential-container {
  width: 100%;
}

/* Banner */
.banner-container {
  background: var(--banner-bg);
  padding: 32px 0;
}

.banner-container > .content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--default-margin);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.banner-main {
  flex: 0 0 auto;
  min-width: 0;
}

.switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 32px 0 0;
  padding: 0;
  width: 132px;
  flex-shrink: 0;
}

@media (min-width: 1260px) {
  .switcher {
    margin-left: -164px;
  }
}

.switcher li {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
}

.switcher .certificate {
  padding: 0 16px;
  border-radius: 6px;
}

.switcher .certificate.selected {
  background: rgba(200, 200, 200, 0.7);
}

.switcher .badge {
  padding: 0 8px;
}

.switcher .badge-thumb {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switcher .badge-thumb img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.banner.landscape {
  display: block;
  width: auto;
}

.banner .certificate.a4.landscape {
  background: #eee;
  box-shadow: none;
  max-width: 632px;
  width: 632px;
  margin: 0;
}

.panel-hidden {
  display: none !important;
}

/* Content area */
.page-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px var(--default-margin) 0;
}

.column-structure {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .column-structure {
    flex-direction: row;
    align-items: flex-start;
  }

  .main-panel {
    flex: 1;
    min-width: 0;
  }

  .detail-panel {
    flex: 0 0 var(--detail-width);
    width: var(--detail-width);
    margin-left: 54px;
  }
}

/* Issuer info */
.issuer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.issuer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.issuer-logo.verified .verified-issuer {
  color: var(--verified);
  font-size: 25px;
  line-height: 1;
}

.issuer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid #e0e0e4;
}

.issuer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 24px;
  line-height: 24px;
  color: var(--primary);
}

.issuer-link:hover {
  text-decoration: none;
}

.issuer-link .icon-external {
  font-size: 16px;
}

/* Credential info */
.credential-name h1 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  margin: 0 0 16px;
}

.menu-container {
  margin-bottom: 8px;
}

.menu-container .responsive-menu-container {
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0 15px;
  min-height: 36px;
  color: #000;
  border-radius: 4px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  font-size: 16px;
  font-weight: 400;
}

.action-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.action-btn .icon-download,
.action-btn .icon-share1,
.action-btn .icon-embed-code,
.action-btn .icon-help1 {
  font-size: 18px;
}

.action-btn.btn-more {
  padding-left: 8px;
}

.action-btn .material-icons {
  font-size: 20px;
  margin-right: -4px;
}

.sign-in-more-options {
  margin: 8px 0 0;
}

.sign-in-more-options a {
  color: var(--primary);
}

/* Expandable recipient section */
.main-panel-expand-container {
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.9, 0.1, 0.83, 0.67);
}

.main-panel-expand-container.collapsed {
  max-height: 60px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent);
}

.main-panel-expand-container:not(.collapsed) {
  max-height: none;
}

.recipient-issuer {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.recipient {
  display: flex;
  align-items: center;
  gap: 16px;
}

.recipient-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4200ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.recipient .name {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
}

.recipient .subtitle a {
  font-size: 14px;
  color: var(--primary);
}

.mat-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 16px 0;
}

.description {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
}

.dates {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 16px;
}

.dates h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: rgba(0, 0, 0, 0.87);
}

.dates .mat-subtitle-2 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.expand-button-container {
  margin-top: 8px;
}

.expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--primary);
  padding: 0 8px;
  min-height: 36px;
  font-weight: 600;
}

.expand-btn .material-icons {
  font-size: 24px;
  transition: transform 0.2s;
}

.main-panel-expand-container:not(.collapsed) + .expand-button-container .expand-btn .material-icons {
  transform: rotate(180deg);
}

/* Sidebar widgets */
.detail-panel {
  display: flex;
  flex-direction: column;
}

.widget {
  margin-bottom: var(--wide-margin);
  border-radius: 6px;
}

.sharing-widget {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: var(--accent);
  color: #fff;
}

.sharing-widget .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.sharing-widget h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 4px;
  color: #fff;
}

.sharing-widget .header .trailing-margin {
  font-size: 16px;
  color: #fff;
}

.sharing-widget .header img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.accredishare-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.accredishare-bar.large .btn-social-network {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  border-radius: 4px;
  font-size: 22px;
}

.accredishare-bar.large .btn-social-network:hover {
  text-decoration: none;
  opacity: 0.9;
}

.btn-more-options {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
}

.linkedin-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  background: #fff;
  color: var(--linkedin);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  padding: 0 16px;
}

.linkedin-add .icon-linkedin {
  font-size: 25px;
}

/* LER CTA */
.ler-cta {
  margin-bottom: var(--wide-margin);
}

.ler-cta-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, rgb(34, 37, 124), rgb(147, 51, 234));
  color: #fff;
}

.ler-cta-card .card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ler-cta-card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ler-cta-card .icon-badge .material-icons {
  font-size: 24px;
}

.ler-cta-card .header-text {
  flex: 1;
}

.ler-cta-card .title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 2px;
}

.ler-cta-card .subtitle {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
}

.ler-cta-card .sparkle-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
}

.ler-cta-card .description {
  color: #fff;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25px;
}

.step-item.blurred {
  filter: blur(4px);
  pointer-events: none;
}

.step-item .step-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.step-divider {
  width: 2px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  align-self: center;
  border: none;
  margin: 0;
  padding: 0;
}

.path-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25px;
  padding: 0 16px;
}

.path-button .material-icons {
  font-size: 20px;
}

/* Verify widget */
.verify-widget {
  padding: 20px;
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 6px;
}

.verify-widget h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 16px;
}

.verify-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
}

.verify-row .icon-verified {
  color: var(--verified);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.blockchain-container {
  margin-bottom: 16px;
}

.blockchain-container .top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #f7f7f8;
  border-radius: 6px;
}

.blockchain-container .top-container > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.blockchain-container img {
  width: 24px;
  height: 24px;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  white-space: nowrap;
}

.verify-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.verify-button:hover {
  background: rgba(34, 37, 124, 0.04);
}

/* More about widget */
.more-about-widget {
  padding: 20px;
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 6px;
  margin-bottom: 0;
}

.more-about-widget h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 16px;
}

.more-about-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.more-about-info .icon-verified {
  color: var(--verified);
  font-size: 20px;
}

.more-about-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url("/assets/images/issuer-avatar.png") center/cover;
  border: 1px solid #e0e0e4;
}

.more-about-name {
  font-weight: 600;
}

.more-about-links {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.more-about-links a.btn-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.more-about-links a.btn-outlined:hover {
  text-decoration: none;
  background: rgba(34, 37, 124, 0.04);
}

.more-about-text {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.more-about-promo {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 8px;
}

.more-about-links-inline a {
  font-size: 14px;
  font-weight: 600;
}

.more-about-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.more-credentials h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.more-credentials a {
  font-size: 14px;
  font-weight: 600;
}

/* Action menus */
.action-menu-wrap {
  position: relative;
  display: inline-block;
}

.action-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.action-menu[hidden],
.modal[hidden],
#toast[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.verify-dialog-credential {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.verify-dialog-credential .icon-verified {
  color: var(--verified);
  font-size: 32px;
  flex-shrink: 0;
}

.verify-dialog-credential h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.3;
}

.verify-dialog-issuer {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.verify-history {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.verify-history li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.verify-history .date {
  color: var(--text-muted);
  margin-right: 8px;
}

.action-menu li button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 16px;
  color: var(--text);
}

.action-menu li button:hover {
  background: rgba(0, 0, 0, 0.04);
}

.menu-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid #e8e8ec;
  padding: 32px 0 24px;
}

.site-footer > .content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--default-margin);
}

.footer-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8ec;
}

.footer-branding .branding {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-branding .branding-logo {
  height: 27px;
}

.footer-branding .powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-branding .powered-by img {
  height: 20px;
}

.footer-language {
  margin-left: auto;
}

.footer-content .top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 24px;
}

.footer-content h2.title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-content li {
  margin-bottom: 8px;
}

.footer-content a {
  font-size: 14px;
  color: var(--text);
}

.language-terms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #e8e8ec;
}

.language-selector-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.language-selector-container select {
  font: inherit;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #fff;
  border-top: 1px solid #e8e8ec;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner .content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner .btn-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Modals */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
}

.modal[hidden] {
  display: none !important;
}

.modal-dialog {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.modal-header h2 {
  font-size: 20px;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
  padding: 0 4px;
}

.modal-body {
  padding: 16px 24px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 24px 20px;
}

.modal-body label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-body input,
.modal-body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 600;
}

.btn-secondary {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 20px;
}

.recaptcha-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

.embed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}

.embed-tab {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
}

.embed-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.help-list {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.embed-field {
  margin-bottom: 16px;
}

.embed-field-row {
  display: flex;
  gap: 8px;
}

.embed-field-row input {
  flex: 1;
}

.embed-field-row button,
.embed-panel > button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  white-space: nowrap;
}

#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #323232;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#toast[hidden] {
  display: none !important;
}

@media (max-width: 991px) {
  .detail-panel {
    margin-top: 32px;
  }

  .issuer-link {
    font-size: 18px;
  }
}
