.logo {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 48px;
}
@view-transition {
    navigation: auto;
  }
/* Optional: You can add custom styles here */
.modal {
    display: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 720px;
    height: 720px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    border: 10px solid white;
}

.text-overflow {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
    height: 1.2em;
    white-space: nowrap;
}

.close {
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    font-weight: bold;
}

.qr-code img {
    /*height: 100% !important; */
    min-width: 100% !important;
    max-width: none !important;
}

.container {
    max-width: 960px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {

    background: rgba(243, 244, 246, 1);

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(31, 41, 55, 1);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(18, 25, 34, 1);
}
.disabled-input {
    background-color: #f0f0f0; /* light gray background */
    color: #999; /* gray text color */
    cursor: not-allowed; /* change cursor to not-allowed */
    pointer-events: none; /* prevent pointer events */
}

.disabled {
    cursor:not-allowed !important;
    filter:saturate(0);
}

.subtype {
    position: relative;

}
.tooltip {
    position: absolute;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    color: #000;
    width: 300px;
    padding: 15px 20px;
    border-radius: 4px;
    pointer-events: none;
    transform: translate(-50%, -100%);
    z-index: 10;
    display: none; /* Start hidden */
}