@import url(https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap);
.menu-dropdown {
    list-style: none;
    margin: 0;
    padding: 0.7rem 1.2rem;
    border: 1px solid #ccc;
    position: absolute;
    background: var(--bg-primary);
    overflow-y: auto;
    z-index: 10;
    border-radius: 0.6rem;
    white-space: nowrap;
    margin-top: -0.2rem;
}


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

.menu-link,
.menu-item a,
.menu-item button {
    font-family:        "Lato", sans-serif;
    font-size:          15px;
    font-weight:        400;
    padding:            8px 2px;
    border-radius:      0;
    margin:             1px 0px;
    text-decoration:    none;
    position:           relative;
    color:              var(--fg-primary);
    display:            inline-block; /* needed for positioning */
}

.menu-link::after,
.menu-item a::after {
    content: '';
    position: absolute;
    height: 3px; /* thickness of underline */
    width: 100%;
    bottom: 3px;
    left: 0;
    background: linear-gradient(to right, var(--status-info) 0%, var(--status-pending) 100%); 
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
}

.menu-item-desc::after {
    position: absolute;
    content: '';
    height: 3px; /* thickness of underline */
    width: 100%;
    bottom: 3px;
    left: 0;
    background: linear-gradient(to right, var(--status-info) 0%, var(--status-pending) 100%); 
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease;
}

.menu-link:hover::after,
.menu-item a:hover::after,
.menu-item-desc:hover::after {
    transform: scaleX(1); /* grow underline on hover */
}


.menu {
    display:         flex;
    flex-direction:  row;
    width:           100%;
    max-width:       25rem;
}

.menu-desktop {
    display:         flex;
    flex-direction:  row;
    list-style:      none;
    justify-content: space-evenly;
    width:           100%;
    padding:         0;
    margin:          0;
}

.menu-main,
.menu-sub {
    display: none;
}

.menu-arrow {
    margin-left: 0.4rem;
    font-size: 0.85em;
}

@media (max-width: 1023px) {
    .menu-desktop {
        display: none;
    }

    .menu-main {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0;
    }
}

.logo {
    font-family: 'Orbitron';
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding-left: 0.2rem;
}

.logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: -webkit-fit-content;
    width: fit-content;
}

.logo-header span {
    color: var(--h1-color);
}

.logo-header img {
    max-width: 24px;
}

.nav {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    box-shadow:      var(--shadow-nav);
    position:        relative;
    z-index:         100;
}

.logo-container {
    padding: 0rem 0.5rem;
    text-decoration: none;
}

.nav-toggle {
    display: none;
}

.nav-header,
.nav-body {
    display: contents;
}

@media (max-width: 1023px) {
    .nav {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
        background: none;
        border: none;
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        cursor: pointer;
        color: var(--fg-primary);
        align-items: center;
        justify-content: center;
    }

    .nav-body {
        display: none;
    }

    .nav-open .nav-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-inline: 1rem;
        padding-block: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        max-width: 20rem;
        background: var(--bg-primary);
        box-shadow: var(--shadow-nav);
        border-radius: 0 0 0 0;
        z-index: 200;
        width: 41%;
    }

    .nav .menu {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        position: relative;
    }

    .nav .menu-main {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        flex: 0 0 auto;
        min-width: 12rem;
    }

    .nav .menu-main > li {
        width: 100%;
    }

    .nav .menu-sub {
        position: absolute;
        background: var(--bg-primary);
        border: 1px solid #ccc;
        border-radius: 0.6rem;
        box-shadow: var(--shadow-nav);
        padding: 0.7rem 1.2rem;
        white-space: nowrap;
        min-width: 10rem;
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
        z-index: 5;
        left: 106%;
    }

    .nav .menu-dropdown {
        position: static;
        border: none;
        margin-top: 0;
        padding: 0 0 0 1rem;
        box-shadow: none;
        border-radius: 0;
    }

    .nav .menu-link,
    .nav .menu-item a,
    .nav .menu-item button {
        padding: 10px 4px;
        font-size: 16px;
    }

    .nav .usermenu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .nav .user-dropdown {
        position: absolute;
        left: 105%;
        top: 0;
        right: auto;
        margin-top: 0;
    }

    .nav .usermenu li {
        position: relative;
    }

    .nav .user svg {
        display: none;
    }

    .nav .user {
        flex-direction: row;
        padding: 10px 4px;
        overflow: hidden;
        justify-content: flex-start;
    }

    .nav .user div {
        font-size: 16px;
    }

    .nav .sign-in {
        text-align: center;
        padding: 0.3rem 1rem;
    }

    .nav .sign-in button {
        padding: 0.4rem 0.8rem;
        font-size: 14px;
    }
}

.sign-in {
    padding-right: 0.1rem;
}

.sign-in button {
    border-radius:   140px;
    padding:         0.3rem 0.6rem;
    color:           var(--primary-btn-color);
    background:      var(--status-pending);
    margin:          4px;
    font-family:     "Lato", sans-serif;
    font-size:       15px;
    text-decoration: none;
}

.sign-in button span {
    padding-left: 0.2rem;
}

.sign-in button:hover {
    background: var(--status-pending-dark);
    box-shadow: var(--shadow-md);
}
.user button {
  background: inherit;
  color: var(--fg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.user {
  background: inherit;
  color: var(--fg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.user div {
    font-size: 0.6rem;
}

.user svg {
    height: 0.8rem;
    width:  0.8rem;
}

.user span {
    font-size: 0.6rem;
}

.user-dropdown {
    list-style: none;
    margin: 0;
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--brd-medium);
    position: absolute;
    background: var(--bg-primary);
    overflow-y: auto;
    z-index: 10;
    border-radius: 0.6rem;
    white-space: nowrap;
    margin-top: +0.1rem;
    right: 0.4rem;
}

.usermenu {
    list-style-type: none; 
}

.menu-link.user-item {
    padding: 0px;
}

.menu-link.user-item::after {
    bottom: -3px;
}



.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-switch .switch {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 25px;
    top: 0; left: 0; right: 0; bottom: 0;
    transition: background-color 0.2s;
}

.toggle-switch .switch::before {
    position: absolute;
    content: "";
    left: 2px; top: 2px;
    width: 21px; height: 21px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch input[type="checkbox"]:checked + .switch {
    background-color: #336699;
}

.toggle-switch input[type="checkbox"]:checked + .switch::before {
    transform: translateX(25px);
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}


.roundbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roundbtn-desc {
    color       : var(--btn-color);
    font-size   : 9pt;
    font-weight : 600;
}

.roundbtn-icon.disabled {
    color       : var(--btn-color-disabled);
}

.roundbtn-icon {
    color:          var(--btn-color);
    margin-bottom : 0.2rem;
    display:        flex;
    align-items:    center;
    padding:        4pt;
}

.roundbtn-icon:hover {
    background: var(--bg-btn-selected);
    color:      var(--btn-selected);
}

.roundbtn-icon.disabled:hover {
    background: inherit;
    color:      var(--btn-color);
}

.login-btn {
    color:            var(--ok-btn-color);
    background-color: var(--status-pending-dark);
    border-radius:    0.5rem;
    cursor:           pointer;
    box-sizing:       border-box;
    width:            100%;
    padding-top:      .75rem;
    padding-bottom:   .75rem;
    font-size:        1rem;
    font-family:      "Lato", sans-serif;
}

.login-btn:disabled {
    background-color: var(--cancel-btn-background);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.7;
}

button:disabled:hover {
    color: var(--text-secondary);
    box-shadow: none;
}

.login-btn:hover {
    color:            var(--ok-btn-color-hover);
    box-shadow:       var(--shadow-md);
}

.create-account {
    font-family:    "Lato", sans-serif;
    color:          var(--status-pending-dark);
    font-size:      inherit;
    padding-left:   0.4rem;
}

.forgot-password {
    font-family:    "Lato", sans-serif;
    color:          var(--link-color);
    float:          right;
    font-size: 0.8rem;
}

.field-label {
    display:         flex;
    justify-content: space-between;
}

.input-with-icons {
    position:       relative;
    color:          var(--text-secondary);
    margin-top:     0.25rem;
}

.input-with-icons input {
    padding-right:  3rem;
    padding-left:   2.5rem;
    padding-top:    .75rem;
    padding-bottom: .75rem;
    width:          100%;
    border-radius:  0.5rem;
    outline:        none;
    border:         1px solid var(--brd-code);
    background:     var(--bg-input);
    color:          var(--fg-input);
}

.input-with-icons input:focus {
    box-shadow: var(--focus-shadow); 
}

.input-with-icons .error {
    border-color: var(--error-color);
}

.input-with-icons .error:focus {
    outline: none;
    box-shadow: var(--error-focus-shadow);
}

.input-with-icons .left {
    position:   absolute;
    left:       0.75rem;
    top:        0.75rem;
    width:      1.25rem;
    height:     1.25rem;
}

.input-with-icons .right {
    color:      inherit;
    position:   absolute;
    right:      1.0rem;
    top:        0.75rem;
    width:      1.25rem;
    height:     1.25rem;
}

.switch {
    font-size: 0.8rem;
    text-align: center;
}

.signin-heading {
    font-family:    "Lato", sans-serif;
    text-align: center;
    padding-bottom: 2rem;
    width: 20rem;
}

.signin-heading h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.signin-heading p {
    color: var(--text-secondary);
}

.signin-field {
    margin-bottom:  1.5rem;
}

.signin-field label {
    font-size: 0.8rem;
    color: var(--fg-primary);
}

.signin-field p {
    font-size: 0.8rem;
    color:     var(--error-color);
    margin-top: 0.25rem;
}

.dialogStyle.btn {
    position: relative;
}

.dialogStyle .close {
    position: absolute;

    width: -webkit-fit-content;

    width: fit-content;
    margin-left: auto;
    right: 0.4rem;
    top: 0.4rem;
}

.human {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
  font-size: 0.8rem;

  --altcha-max-width     : 800px;
  --altcha-border-radius : 0.5rem;
  --altcha-color-border  : var(--brd-code);
  --altcha-color-text    : var(--fg-primary);
  --altcha-color-base    : var(--bg-assistant);
}

.human > * {
  flex:  1 1;          /* make child fill all available space */
  width: 100%;
}

.lock-warning {
    max-width: 20rem;
    font-size: 0.8rem;
    background-color: var(--error-bg);
    padding: 0.2rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--fg-primary);
}

.lock-warning p {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.terms-agreement {
    margin-bottom: 1.5rem;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--fg-primary);
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 0.15rem;
    cursor: pointer;
}

.terms-checkbox a {
    color: var(--link-color);
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.terms-agreement p {
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.25rem;
}

.dialogStyle .close {
    position: absolute;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
    right: 0.4rem;
    top: 0.4rem;
}

.dialogStyle h2 {
  color: var(--h2-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--fg-primary);
  font-size: 0.875rem;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: .75rem;
  border: 1px solid var(--brd-input);
  border-radius: 8px;
  background-color: var(--bg-input);
  color: var(--fg-input);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--brd-input-focus);
  box-shadow: var(--focus-shadow);
}

.input::placeholder {
  color: var(--text-muted);
}

.input:last-of-type {
  margin-bottom: 0;
}

.button {
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-top: 1.5rem;
  background: var(--status-pending-dark);
  color: var(--ok-btn-color);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-button);
}

.button:hover {
  background: var(--status-pending);
  color: var(--ok-btn-color-hover);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-button);
}

.input-error {
  border-color: var(--error-color) !important;
}

.input-error:focus {
  border-color: var(--error-color-hover) !important;
  box-shadow: var(--error-focus-shadow) !important;
}

.error-message {
  display: block;
  margin-top: -0.25rem;
  margin-bottom: 0.25rem;
  color: var(--error-color);
  font-size: 0.75rem;
  font-weight: 500;
}

.containerStyle {
    width:        100%;
    aspect-ratio: 16 / 6;
    overflow:     hidden;
    position:     relative;
}

.imageStyle {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: auto;
}

.background-container {
    width: 100%;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background-color: #010c0c;

    .hero-img {
        position: absolute;
        top: auto;
    }

    .banner {
        position: absolute;
        width: 100%;
        background-color: var(--status-info);
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 0;
        padding-block: .5rem;

        p {
            margin: 0;
        }
    }

    @media (max-width: 689px) {
        height: 100vh;

        .hero-img {
            height: 100%;
        }

        .banner {
            top: 0;
            bottom: auto;
            bottom: initial;
        }
    }

    @media (min-width: 690px) and (max-width: 1023px) {
        .hero-img {
            width: 100%;
            height: 100%;
        }

        .banner {
            top: 0;
            bottom: auto;
            bottom: initial;
        }
    }

    @media (min-width: 1024px) {
        .hero-img {
            width: 100%;
        }
    }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);  /* Optional text readability overlay - keep as is for image overlay */
    z-index: 1;
}

.background-text {
    position:    relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index:     2;
    text-shadow: var(--icon-text-shadow);
    font-family: manrope;
    padding-inline: .5rem;
    padding-top: 2rem;

    .text-title {
        font-size:   3.0rem;
        font-weight: bolder;
        color: var(--bg-primary);
        text-align: center;
    }

    .text-desc {
        padding-right: .3rem;
        padding-top: .3rem;
        text-align: center;
        color: var(--bg-primary);
        font-weight: bolder;
    }

    .text-cta {
        margin-top: 1rem;
    }
}

.learn-more-container {
    padding-top:    1rem;
    padding-bottom: 1rem;
}

.learn-more {
    background: var(--status-info);
    color: var(--primary-btn-color);
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
    border-radius: 27px;
    text-decoration: none;
    width: -webkit-fit-content;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more-desc {
    padding: 0rem 1rem;
}

.learn-more-icon {
    font-size: 2.5rem;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.learn-more:hover .learn-more-icon {
    transform: rotate(0deg);
}

.learn-more-icon svg {
    display:        block;
    background:     var(--fg-primary);
    border-radius:  50%;
}


.learn-more:hover {
    box-shadow: var(--shadow-lg);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.container {
    padding-block: 3rem;
    padding-inline:   1.5rem;
}

.container.onbtn {
    padding-bottom: 0rem;
}

.container.ontop {
    padding-top:    2rem;
}

.container > * {
    max-width:      var(--max-width);
    margin: 0 auto;
}


.split {
    display:    flex;
    gap:        var(--gap);
}

.split > * {
    flex : 1 1;
}

@media screen and (max-width: 650px) {
    .split {
        flex-direction: column;
    }

    .split.reverse {
        flex-direction: column-reverse;
    }
}

.footerlinks {
    display: flex;
    flex-direction: column;
    font-family: manrope;
}

.footerlinks a {
    font-size: 0.8rem;
    color: var(--footer-link);
    text-decoration: none;
}

.footerlinks span {
    font-size: 0.8rem;
    color: var(--footer-link);
    text-decoration: none;
}

.footerlinks a:hover {
    color: var(--fg-primary);
    text-decoration: underline;
}

.footerlinks .footer-heading {
    font-size: 1.2rem;
    color: var(--h1-color);
    font-family: manrope;
    font-weight: bold;
    
}

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



.json {
    background:     #f0f0f0;
    padding:        0.4rem;
    font-size:      0.75rem;
    overflow:       scroll;
}

.keys {
    color: var(--fg-code-keys);
}

.symbol {
    color:       var(--fg-code-symbol);
    font-weight: bold;
}

.values {
    color:       var(--fg-code-text);
}

.number {
    color:      var(--fg-code-number);
}

.copyright {
    color: var(--text-tertiary);
    width: -webkit-fit-content;
    width: fit-content;
}

.copyright span {
    padding-right: 0.4rem;
}

.vsplit-logo {
    align-items: center;
    width:       -webkit-fit-content;
    width:       fit-content;
    height:      100%;
    padding-top: 0.2rem;
}

.document {
    font-family:    manrope;
    margin:         0 auto;
}

.document.main {
    max-width:      700px;
    padding-bottom: 4rem;
}

.document.main > p {
    padding-bottom: 0rem;
}

.document li {
    padding-left: 0.5rem;
    margin-left:  1.5rem;
}

.document h1 {
    color:          var(--h1-color);
    padding-top:    2rem;
    border-bottom:  3px solid var(--status-info);
    padding-bottom: 0.2rem;
    margin-bottom:  0rem;
}

.document h2 {
    color:          var(--h2-color);
    padding-top:    2rem;
    border-bottom:  2px solid var(--status-info);
    width:          -webkit-fit-content;
    width:          fit-content;
}

.document h2:first-of-type {
    padding-top: 0rem;
}

.document.main h2:first-of-type {
    padding-top: 2rem;
}

.document h3 {
    color:           var(--h2-color);
    padding-top:     2rem;
    border-bottom:   1.5px solid var(--status-info);
    width:           -webkit-fit-content;
    width:           fit-content;
    text-decoration: none;
}

.document h3 a {
    color:           var(--h2-color);
    padding-top:     2rem;
    text-decoration: none;
}

.document h3 a:visited {
    color:       var(--h2-color);
    padding-top: 2rem;
}

.document h1 + h2 {
    padding-top: 0;
}

.document h4 {
    padding-top: 2rem;
}

.document pre {
    display:        inline-block;
    margin:         0.5rem 0rem;
    padding:        0.5rem;
    background:     var(--bg-code);
    borderRadius:   0.3rem;
    fontFamily:     monospace;
}

.scroll {
    overflow-y:     auto;
    flex-grow:      1;
    display:        flex;
    flex-direction: column;
}

.document-view {
    padding-left:   2rem;
    padding-right:  2rem;
    padding-top:    0rem;
    padding-bottom: 2rem;
    flex-grow:      1;
}

.document-view.extraspace {
    padding-top: 4rem;
}

.company-mention {
    font-weight: bold;
    font-style:  italic;
}

.highlight {
    margin-top:     3rem;
    margin-bottom:  3rem;
    padding: 2rem 1rem 2rem 2rem;
    background-color: var(--icon-bg);
    border-left: 4px solid var(--status-info);
}

.highlight p {
    padding-left:   0rem;
    padding-top:    0.5rem;
    padding-bottom: 0.5rem;
    margin-top:     0rem;
}

.highlight h2 {
    padding-top: 0rem;
}

.extraspace {
    padding-top: 4rem;
}



.imageview {
    border-radius:   7px;
    object-fit:      contain;
    display:         block;
    object-position: top;
    width:           100%;
    box-shadow:      4px 4px 20px rgba(0,0,0,0.40);
    border:          2px solid black;
}

.imageviewparent {
    display:        flex;
    align-items:    center;
}

.video-container {
    margin: 0px auto;
}

.video {
    width:          100%;
    border:         1.5px solid black;
    border-radius:  6px;
}

.home {
    padding-bottom: 0rem;
    overflow-y:     auto;
    min-height:     100%;
    background: var(--gradient-home);
}

.contact-container {
    display:        flex;
    padding:        0rem 2rem 1rem 2rem;
    flex-direction: column;
}

.contact-container h2 {
    color:          var(--h2-color);
    border-bottom:  2px solid var(--status-info);
    width:          -webkit-fit-content;
    width:          fit-content;
}

.contact-container p {
    margin-bottom: 1rem;
}

@media (max-width: 1000px) {
    .contact-container {
        padding: 1rem 0rem;
    }
}



/* Toast System CSS */
.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 320px;
    max-width: 400px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    animation: slideIn 0.3s ease-out;
    transition: all 0.3s ease-in-out;
}

.toast.removing {
    animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

.toast-icon {
    font-size: 18px;
    font-weight: bold;
    margin-right: 12px;
    min-width: 20px;
    text-align: center;
}

.toast-message {
    flex: 1 1;
    word-wrap: break-word;
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.toast-close:hover {
    opacity: 0.7;
}

/* Toast Type Styles */
.toast-success {
    background-color: #10b981;
    color: white;
}

.toast-error {
    background-color: #ef4444;
    color: white;
}

.toast-warning {
    background-color: #f59e0b;
    color: white;
}

.toast-info {
    background-color: #3b82f6;
    color: white;
}

.toast-default {
    background-color: #6b7280;
    color: white;
}

/* Progress Bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: width linear;
}

.toast-success .toast-progress {
    background-color: rgba(255, 255, 255, 0.4);
}

.toast-error .toast-progress {
    background-color: rgba(255, 255, 255, 0.4);
}

.toast-warning .toast-progress {
    background-color: rgba(255, 255, 255, 0.4);
}

.toast-info .toast-progress {
    background-color: rgba(255, 255, 255, 0.4);
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
    gap: 12px;
    margin-bottom: 32px;
}

.usage-example {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
}

.usage-example h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.usage-example pre {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    overflow-x: auto;
    white-space: pre-wrap;
}


.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}


.icon {
    border-radius: 50%;
    padding: 8pt;
    font-size: 16pt;
    height: 20pt;
    box-sizing: content-box;
    width: -webkit-fit-content;
    width: fit-content;

    background: var(--icon-bg);
    box-shadow: var(--icon-shadow);
    text-shadow: var(--icon-text-shadow);
    border: 1px solid var(--icon-border);
}

.icon span {
    transform: translateY(-4px);
    display: inline-block;
}


.points {
    font-family:    manrope;
    padding-bottom: 1.5rem;
}

.points h2 {
    font-family:     manrope;
    color:           var(--h2-color);
    border-bottom:   2px solid var(--status-info);
    width:           -webkit-fit-content;
    width:           fit-content;
}

.point {
    display:     flex;
    align-items: center;
    padding:     0.8rem 0rem;
}

.point-text {
    padding-left: calc(var(--big-pad) * 1.0);
}

.point-head {
    margin:      0px;
    font-weight: bolder;
    color:       #000;
    font-size:   14pt;
}

.point-desc {
    color:      var(--p-color);
    margin-top: 0.2rem;
    font-size:  13pt;
}




.heading {
    color:          var(--h1-color);
    padding-top:    0rem;
    border-bottom:  3px solid var(--status-info);
    padding-bottom: 0.2rem;
    margin-bottom:  2rem;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 14px solid lightblue;
    border-top-color: darkblue;
    box-sizing: border-box;
    animation: spin 1s linear infinite;
    background: transparent; /* ensures no fill */
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.notfound {
    height:         100%;
    display:        flex;
    align-items:    center;
}

.notfound h1 {
    padding-top: 0.0rem;
}

.copyBtn {
    position:    absolute;
    right:       2rem;
    display:     inline-flex;
    align-items: center;
    padding:     0.6rem 0.6rem;
}

.copyBtn:hover {
    background:  var(--ok-btn-background);
    color:       var(--ok-btn-color-hover);
}

.inputStyle.copyText {
    padding-right: 6.5rem;
}



.info {
    max-width:      32rem;
    padding-bottom: 2.3rem;
    margin-top: 1rem;
    max-width: 32rem;
    margin-bottom: 2.3rem;
    border: 0.5px solid var(--fg-primary);
    padding: 0.8rem 0.8rem 0.8rem 1.6rem;

    background: var(--brd-medium);
    border-left: 4px solid var(--bg-btn-selected);
}

.dialog-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.dialog-title h1 {
    text-align: center;
}

.dialog-title h2 {
    text-align: center;
}

.dialog-title p {
    font-size: 0.9rem;
    text-align: left;
}

.chat-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: var(--bg-box);
}

.chat-entry.active {
    background-color: var(--bg-box-selected);
}

@media (hover: hover) {
  .chat-actions {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
  }
}

.chat-entry:hover .chat-actions {
  opacity    : 1;
  visibility : visible;
}


.chatlist-time {
    font-size: 8pt;
}

.chatlist-name {
    font-size: 12pt;
}

.chats {
    flex: 1 1 auto;
    min-height     : 0;
    display        : flex;
    flex-direction : column;
    max-width      : 35rem;
    margin         : 0 auto;
}

.chat-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
}

.chat-title {
}

.chat-header-actions {
    display: flex;
}

.chat-list {
    flex       : 1 1 auto;
    height: -webkit-fit-content;
    height: fit-content;
    padding    : 0px 8px;
    padding-bottom: 1rem;
}


.apikeylist-time {
    font-size: 8pt;
    white-space: nowrap;
}

.list-label {
    display: inline-block;
    width:   5rem;
}

.apikey-header {
    font-size: 16pt;
    margin-bottom: 0.6rem;
}


.dialogStyle {
    min-width:     350px;
    padding:       2rem;
    border-radius: 12px;
    border:        none;
    box-shadow:    var(--shadow-lg);
    font-family:   var(--font);
    position:      fixed;
    top:           50%;
    left:          50%;
    transform:     translate(-50%, -50%);
    margin:        0; /* Prevent browser default margin */
    background:    var(--bg-card);
    z-index:       1000; /* Ensure it appears above other elements*/

    @media (min-width: 770px) and (max-width: 1439px) {
        .inputStyle, button {
            margin: 0 !important;
        }
    }
}

.labelStyle {
    font-weight:   bold;
    margin-bottom: 0.3rem;
    display:       block;
}

.inputStyle {
    width:         100%;
    padding:       0.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    border:        1px solid var(--brd-medium);
    font-size:     1rem;
    background:    var(--bg-input);
    color:         var(--fg-input);
}

.buttonRowStyle {
    display:         flex;
    justify-content: flex-end;
    gap:             1rem;
    margin-top:      1.5rem;
}

.buttonStyle {
    padding:       0.6rem 1.4rem;
    border-radius: 6px;
    border:        none;
    font-weight:   bold;
    font-size:     1rem;
    cursor:        pointer;
    transition:    background 0.2s;
}

.cancelStyle {
    background: var(--cancel-btn-background);
    color:      var(--cancel-btn-color);
}

.saveStyle {
    background: var(--ok-btn-background);
    color:      var(--ok-btn-color);
}

.saveStyle:hover {
    background: var(--ok-btn-background-hover);
    color:      var(--ok-btn-color-hover);
}



.model-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
}

.model-header-actions {
    display: flex;
}

.model-info {
    flex: 1 1;
    overflow: hidden;
}

.model-group {
    font-size: 12pt;
    font-weight: bold;
    padding: 4px 2px 4px 6px;
    color: #000000;
}

.combo-dropdown li {
    padding: 10px;
    cursor: pointer;
}

.combo-dropdown li:hover,
.combo-dropdown .selected {
    background-color: #f0f0f0;
}

.model {
    max-width: 35rem;
    margin: 0 auto;
}

.model-selected {
    background-color: #9b9bff;
}

.model-list {
    flex       : 1 1 auto;
    overflow-y : auto;
    min-height : 0;
    padding    : 0px 8px;
}

.model-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: var(--bg-box);
}

.model-entry.active {
    background-color: var(--bg-box-selected);
}

.modellist-time {
    font-size: 8pt;
    color: #404040;
}

.modellist-name {
    font-size: 12pt;
}

.modellist-desc {
    font-size: 10pt;
    color: #404040;
}


@media (hover: hover) {
  .model-actions {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
  }
}


.model-entry:hover .model-actions {
  opacity    : 1;
  visibility : visible;
}


.toolbar {
    display:        flex;    
    align-items:    center;
    flex:           1 1 auto;
    gap:            .2rem;
    padding:        0.8rem 0.8rem;
    background:     var(--bg-toolbar);
}

.toolbar.vertical {
    flex-direction: column;
}

.toolbar.horizontal {
    flex-direction: row;
}


.message {
    margin-bottom: 1rem;
    max-width: 90%;
    display: grid;
    padding-top: 1rem;
}

.desktop .message {
    grid-template-areas:
        "header  stars  empty"
        "oneof   main   main"
        "empty2  empty3 timestamp";
    grid-template-columns: auto 1fr auto;
}

.mobile .message {
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "oneof  stars"
        "main   main"
        "empty3 timestamp";
}

.message.edit {
    width: 100%;
}

.user-message {
    align-self: flex-end;
    align-items: flex-end;
    margin-left: auto;
    width: -webkit-fit-content;
    width: fit-content;
}

.bot-message {
  align-self: flex-start;
  align-items: flex-start;
  margin-right: auto;
}

.message-content {
    border-radius: 18px;
    word-break: break-word;
}

.desktop .message-content {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-top: 0.4rem;
    padding-bottom: 0.2rem;
}

.mobile .message-content {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.desktop .message-content p {
    margin-top: 1.0rem;
}

.mobile .message-content p {
    margin-top: 0.4rem;
}

.message-actions {
    text-align: right;
}

.desktop .message-actions {
    padding-top: 0.25rem;
}

.mobile .message-actions {
    padding-top: 0rem;
}

.user-message .message-content {
    background-color: var(--bg-user-message);
    color: var(--fg-user-message);
    border-top-right-radius: 4px;
    grid-area: main;
}

.bot-message .message-content {
    background-color:       var(--bg-assistant);
    color:                  var(--fg-assistant);
    border-top-left-radius: 4px;
    grid-area:              main;
    border:                 1px solid var(--brd-assistant);
}

.message-timestamp {
    grid-area: timestamp;
    font-size: 0.75rem;
    color: var(--text-timestamp);
    margin-top: 0.25rem;
}

.message-edit {
    flex: 1 1;
    padding: 0.75rem 1rem;
    width: 100%
}

.message-code {
    background: var(--bg-code);
    border: 1px solid var(--brd-code);
    border-radius: 0.4rem;
    overflow: auto;
}

.desktop .message-code {
    padding: 0.4rem 1rem;
}

.mobile .message-code { 
    padding: 0.1rem 0.1rem;
}

.redbutton {
    color: var(--error-color);
}

.redbutton:hover {
    color: var(--error-color-hover);
}

.desktop .thinking {
    padding-bottom: 18px;
    padding-top: 1rem;
}

.mobile .thinking {
    padding-top: 0.3rem;
}

.thinking-header {
    width: -webkit-fit-content;
    width: fit-content;
    border: 1px solid black;
    padding: 6px 6px;
    border-radius: 10px;
    background-color: #5c5cdf;
    color: white;
    font-weight: bold;
}

.thinking-container {
    border-left: 2px solid #800000;
    margin-left: 10px;
    padding-left: 30px;
    padding-top: 20px;
    color: var(--fg-thinking);
}

.desktop .thinking-container {
    margin-left: 10px;
    padding-left: 30px;
    padding-top: 20px;
}

.mobile .thinking-container {
    margin-left: 0.25rem;
    padding-left: 0.5rem;
    padding-top: 0.0rem;
}

.thinking-emoji {
    font-size: 12pt;
    padding-right: 10px;
}

.thinking-button {
    color: white;
    font-weight: bold;
    margin-left: 5px;
    margin-right: 4px;
}

.textarearesize {
    resize:           none;
    border:           none;
    outline:          none;
    font-size:        11pt;
    background-color: inherit;
}


.oneof {
    padding: 0rem 0.1rem;
    cursor: default;
    -webkit-user-select: none;
            user-select: none;
}

.oneof:hover {
    color: blue;
}

.message-oneof {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-right: 0.5rem;
    grid-area: oneof;
}

.message-oneof:hover {
    box-shadow: 4px 4px 20px rgba(0,0,0,0.20);
}

.one-of-text {
    flex-grow:    1;
    display:      flex;
    align-items:  center;  /* Vertically center the span text inside */
    height:       auto;
}

.one-of-text span {
    margin:         auto;
    padding-bottom: 4px;
}


button {
  font-family: var(--font);
  font-size: 24px;
  font-variant-emoji: text;
  color: var(--btn-color);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

p {
  margin-top: 1rem;
}

button:hover {
  color: var(--bg-btn-selected);
}

.empty-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-style: italic;
}

.chat-input {
  flex: 1 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--brd-light);
  border-radius: 24px;
  outline: none;
  font-size: 1rem;
  background: var(--bg-input);
  color: var(--fg-input);
}

.chat-input:focus {
  border-color: var(--status-info);
}

.star-rating {
    display: inline-block;
    grid-area: stars;
}

.star {
  color: var(--brd-medium);
  cursor: pointer;
  font-size: 1.2em;
  margin-right: 2px;
}

.star.filled {
  color: var(--status-warning);
}

.cursor {
    display: inline-block;
    width: 1ch;
    background: none;
    border-left: 2px solid var(--text-muted);
}


.chat-input-form {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border:  1px solid var(--brd-input);
    margin: .5rem 1rem;
    border-radius: 1.5rem;
    background: var(--bg-input);
}

.chat-input-actions {
}

.input-text {
    width:       100%;
    padding:     0.5rem 0.5rem;
    font-family: inherit;
    font-size:   13pt;
    color:       var(--fg-input);
}

.chat-input-submit {
    background-color: var(--status-success);
    color:            var(--fg-primary);
    padding:          4pt;
}

.chat-input-submit.disabled {
    background-color: var(--brd-code);
    color: 	      var(--fg-title-bar);
}

.sysprompt {
    background-color: var(--bg-code);
    margin:           0rem 1rem;
    display:          flex;
    flex-direction:   column;
    border-bottom-left-radius:  10px;
    border-bottom-right-radius:  10px;
    border-left:      2px solid var(--bg-btn-selected);
    border-right:     2px solid var(--bg-btn-selected);
    border-bottom:    2px solid var(--bg-btn-selected);
    padding-left:     6px;
    padding-right:    6px;
    padding-bottom:   1rem;
    padding-top:      0.4rem;
    cursor:           default;
}

.sysprompt.edit {
    background-color: var(--bg-input);
    border-left:      3px solid var(--bg-btn-selected);
    border-right:     3px solid var(--bg-btn-selected);
    border-bottom:    3px solid var(--bg-btn-selected);
    padding-left:     5px;
    padding-right:    5px;
    padding-bottom:   3px;
}

.sysprompt-actions {
    text-align:       right;
    padding-top:      0.25rem;
    padding-right:    0.51rem;
}

.textarea-sysprompt {
    width: 100%;
}

.chat-container {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 auto;
}

.messages-container {
    flex: 1 1;
    overflow-y: auto;
}

.desktop .messages-container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mobile .messages-container {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}


.model-combo-box {
    position: relative;
    width: 100%;
}

.combo-selected {
    padding: 1px 5px 1px 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    background:     var(--bg-box);
}

.combo-selected:hover {
    padding: 0px 4px 0px 0px;
    border: 1px solid #ccc;
    background: var(--bg-box);
}

.model-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 8pt;
    padding: 2px 4px 4px 8px
}

.arrow {
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 7pt;
}

.combo-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    width: 20rem;
    background: white;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10;
}

.list-desc {
    font-size: 9pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #404040;
}

.list-time {
    font-size: 9pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #404040;
}

.list-name {
    font-size: 12pt;
    padding: 0px 2px 4px 0px;
}


.overlay-container {
    position:   relative;
    display:    flex;
    flex:       1 1;
    overflow:   hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    padding: 32px 48px;
    border-radius: 20px;
    text-align: center;
    background-color: var(--ok-btn-background);
    box-shadow: var(--shadow-md);
    outline: none; /* Remove default outline */
    color: var(--ok-btn-color);
    overflow: hidden;
}

.overlay-content:hover {
    color:      var(--ok-btn-color-hover);
    box-shadow: var(--shadow-overlay);

}


/* Variables declaration */
.rdp-root {
  --rdp-accent-color: blue; /* The accent color used for selected days and UI elements. */
  --rdp-accent-background-color: #f0f0ff; /* The accent background color used for selected days and UI elements. */

  --rdp-day-height: 44px; /* The height of the day cells. */
  --rdp-day-width: 44px; /* The width of the day cells. */

  --rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
  --rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
  --rdp-day_button-height: 42px; /* The height of the day cells. */
  --rdp-day_button-width: 42px; /* The width of the day cells. */

  --rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
  --rdp-disabled-opacity: 0.5; /* The opacity of the disabled days. */
  --rdp-outside-opacity: 0.75; /* The opacity of the days outside the current month. */
  --rdp-today-color: var(--rdp-accent-color); /* The color of the today's date. */

  --rdp-dropdown-gap: 0.5rem; /* The gap between the dropdowns used in the month captons. */

  --rdp-months-gap: 2rem; /* The gap between the months in the multi-month view. */

  --rdp-nav_button-disabled-opacity: 0.5; /* The opacity of the disabled navigation buttons. */
  --rdp-nav_button-height: 2.25rem; /* The height of the navigation buttons. */
  --rdp-nav_button-width: 2.25rem; /* The width of the navigation buttons. */
  --rdp-nav-height: 2.75rem; /* The height of the navigation bar. */

  --rdp-range_middle-background-color: var(--rdp-accent-background-color); /* The color of the background for days in the middle of a range. */
  --rdp-range_middle-color: inherit; /* The color of the range text. */

  --rdp-range_start-color: white; /* The color of the range text. */
  --rdp-range_start-background: linear-gradient(
    var(--rdp-gradient-direction),
    transparent 50%,
    var(--rdp-range_middle-background-color) 50%
  ); /* Used for the background of the start of the selected range. */
  --rdp-range_start-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the start of the selected range. */

  --rdp-range_end-background: linear-gradient(
    var(--rdp-gradient-direction),
    var(--rdp-range_middle-background-color) 50%,
    transparent 50%
  ); /* Used for the background of the end of the selected range. */
  --rdp-range_end-color: white; /* The color of the range text. */
  --rdp-range_end-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the end of the selected range. */

  --rdp-week_number-border-radius: 100%; /* The border radius of the week number. */
  --rdp-week_number-border: 2px solid transparent; /* The border of the week number. */

  --rdp-week_number-height: var(--rdp-day-height); /* The height of the week number cells. */
  --rdp-week_number-opacity: 0.75; /* The opacity of the week number. */
  --rdp-week_number-width: var(--rdp-day-width); /* The width of the week number cells. */
  --rdp-weeknumber-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-weekday-opacity: 0.75; /* The opacity of the weekday. */
  --rdp-weekday-padding: 0.5rem 0rem; /* The padding of the weekday. */
  --rdp-weekday-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-gradient-direction: 90deg;

  --rdp-animation_duration: 0.3s;
  --rdp-animation_timing: cubic-bezier(0.4, 0, 0.2, 1);
}

.rdp-root[dir="rtl"] {
  --rdp-gradient-direction: -90deg;
}

.rdp-root[data-broadcast-calendar="true"] {
  --rdp-outside-opacity: unset;
}

/* Root of the component. */
.rdp-root {
  position: relative; /* Required to position the navigation toolbar. */
  box-sizing: border-box;
}

.rdp-root * {
  box-sizing: border-box;
}

.rdp-day {
  width: var(--rdp-day-width);
  height: var(--rdp-day-height);
  text-align: center;
}

.rdp-day_button {
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  justify-content: center;
  align-items: center;
  display: flex;

  width: var(--rdp-day_button-width);
  height: var(--rdp-day_button-height);
  border: var(--rdp-day_button-border);
  border-radius: var(--rdp-day_button-border-radius);
}

.rdp-day_button:disabled {
  cursor: revert;
}

.rdp-caption_label {
  z-index: 1;

  position: relative;
  display: inline-flex;
  align-items: center;

  white-space: nowrap;
  border: 0;
}

.rdp-dropdown:focus-visible ~ .rdp-caption_label {
  outline: 5px auto Highlight;
  /* biome-ignore lint/suspicious/noDuplicateProperties: backward compatibility */
  outline: 5px auto -webkit-focus-ring-color;
}

.rdp-button_next,
.rdp-button_previous {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  appearance: none;

  width: var(--rdp-nav_button-width);
  height: var(--rdp-nav_button-height);
}

.rdp-button_next:disabled,
.rdp-button_next[aria-disabled="true"],
.rdp-button_previous:disabled,
.rdp-button_previous[aria-disabled="true"] {
  cursor: revert;

  opacity: var(--rdp-nav_button-disabled-opacity);
}

.rdp-chevron {
  display: inline-block;
  fill: var(--rdp-accent-color);
}

.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
  transform: rotate(180deg);
  transform-origin: 50%;
}

.rdp-dropdowns {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--rdp-dropdown-gap);
}
.rdp-dropdown {
  z-index: 2;

  /* Reset */
  opacity: 0;
  -webkit-appearance: none;
          appearance: none;
  position: absolute;
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  border: none;
  line-height: inherit;
}

.rdp-dropdown_root {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-month_caption {
  display: flex;
  align-content: center;
  height: var(--rdp-nav-height);
  font-weight: bold;
  font-size: large;
}

.rdp-root[data-nav-layout="around"] .rdp-month,
.rdp-root[data-nav-layout="after"] .rdp-month {
  position: relative;
}

.rdp-root[data-nav-layout="around"] .rdp-month_caption {
  justify-content: center;
  -webkit-margin-start: var(--rdp-nav_button-width);
          margin-inline-start: var(--rdp-nav_button-width);
  -webkit-margin-end: var(--rdp-nav_button-width);
          margin-inline-end: var(--rdp-nav_button-width);
  position: relative;
}

.rdp-root[data-nav-layout="around"] .rdp-button_previous {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: var(--rdp-nav-height);
  display: inline-flex;
}

.rdp-root[data-nav-layout="around"] .rdp-button_next {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  height: var(--rdp-nav-height);
  display: inline-flex;
  justify-content: center;
}

.rdp-months {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--rdp-months-gap);
  max-width: -webkit-fit-content;
  max-width: fit-content;
}

.rdp-month_grid {
  border-collapse: collapse;
}

.rdp-nav {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;

  display: flex;
  align-items: center;

  height: var(--rdp-nav-height);
}

.rdp-weekday {
  opacity: var(--rdp-weekday-opacity);
  padding: var(--rdp-weekday-padding);
  font-weight: 500;
  font-size: smaller;
  text-align: var(--rdp-weekday-text-align);
  text-transform: var(--rdp-weekday-text-transform);
}

.rdp-week_number {
  opacity: var(--rdp-week_number-opacity);
  font-weight: 400;
  font-size: small;
  height: var(--rdp-week_number-height);
  width: var(--rdp-week_number-width);
  border: var(--rdp-week_number-border);
  border-radius: var(--rdp-week_number-border-radius);
  text-align: var(--rdp-weeknumber-text-align);
}

/* DAY MODIFIERS */
.rdp-today:not(.rdp-outside) {
  color: var(--rdp-today-color);
}

.rdp-selected {
  font-weight: bold;
  font-size: large;
}

.rdp-selected .rdp-day_button {
  border: var(--rdp-selected-border);
}

.rdp-outside {
  opacity: var(--rdp-outside-opacity);
}

.rdp-disabled:not(.rdp-selected) {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-hidden {
  visibility: hidden;
  color: var(--rdp-range_start-color);
}

.rdp-range_start {
  background: var(--rdp-range_start-background);
}

.rdp-range_start .rdp-day_button {
  background-color: var(--rdp-range_start-date-background-color);
  color: var(--rdp-range_start-color);
}

.rdp-range_middle {
  background-color: var(--rdp-range_middle-background-color);
}

.rdp-range_middle .rdp-day_button {
  border: medium none currentColor;
  border: initial;
  border-radius: 0;
  border-radius: initial;
  color: var(--rdp-range_middle-color);
}

.rdp-range_end {
  background: var(--rdp-range_end-background);
  color: var(--rdp-range_end-color);
}

.rdp-range_end .rdp-day_button {
  color: var(--rdp-range_start-color);
  background-color: var(--rdp-range_end-date-background-color);
}

.rdp-range_start.rdp-range_end {
  background: revert;
}

.rdp-focusable {
  cursor: pointer;
}

@keyframes rdp-slide_in_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_in_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_out_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes rdp-slide_out_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.rdp-weeks_before_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_before_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

@keyframes rdp-fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rdp-fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.rdp-caption_after_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_after_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.date-selector {
    position: relative;
    margin-right: 1rem;

    .date-range-display {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
        border: 1px solid #ccc;
        border: 1px solid var(--brd-medium, #ccc);
        border-radius: 0.5rem;
        cursor: pointer;
        -webkit-user-select: none;
                user-select: none;
        background: #fff;
        background: var(--bg-primary, #fff);
        font-size: 0.85rem;

        &:hover {
            border-color: #4a90d9;
            border-color: var(--status-info, #4a90d9);
        }

        .date-range-text {
            white-space: nowrap;
        }

        .dropdown-arrow {
            font-size: 0.6rem;
            color: #666;
            color: var(--fg-secondary, #666);
        }
    }

    .date-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        z-index: 50;
        background: #fff;
        background: var(--bg-primary, #fff);
        border: 1px solid #ccc;
        border: 1px solid var(--brd-medium, #ccc);
        border-radius: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        padding: 1rem;

        button {
            background-color: transparent !important;
            border: none !important;
            color: black !important;
        }

        button:hover {
            background-color: var(--status-info) !important;
        }

        /*calendar component styling*/
        .rdp-range_start, .rdp-range_end {
            background: var(--status-info) !important;
        }

        .rdp-range_middle {
            background-color: var(--status-pending);
        }

        .date-dropdown-label {
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            color: #666;
            color: var(--fg-secondary, #666);
        }
    }
}

.billing-section {
    padding-inline: 1rem;
    padding-bottom: 1rem;
    flex: 1 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    .filter {
        display: flex;
        align-items: center;
        margin-top: .2rem;

        button {
            font-size: 1rem;
            border-radius: .5rem;
            padding-inline: .5rem;
            padding-block: .3rem;
            margin-inline: .5rem;
            width: -webkit-fit-content;
            width: fit-content;
            height: -webkit-fit-content;
            height: fit-content;
            background-color: var(--status-info);
            color: white;
            margin-block: 0;
            transition: background 0.35s ease;

            &:hover {
                background-color: var(--status-info-dark);
            }
        }
    }

    .billing-overview {
        display: flex;
        flex-direction: column;
        flex: 1 1;
        min-height: 0;
        width: 100%;
        margin-top: 1rem;

        > * {
            padding-block: .5rem;
        }

        .table-container {
            display: flex;
            flex-direction: column;
            flex: 1 1;
            min-height: 0;
            overflow: hidden;
            padding-block: 0;

            .table-scroll {
                flex: 1 1;
                min-height: 0;
                overflow: hidden;
                padding-block: 0;
            }

            .totals-scroll {
                overflow-x: auto;
                padding-block: 0;
                flex-shrink: 0;
                max-height: 4.5rem;
            }

            .totals-table {
                flex-shrink: 0;
                border-top: none;
                padding-block: 0;
            }
        }
    }
}

@media (max-width: 1023px) {
    .billing-section .filter {
        flex-direction: column;
        align-items: stretch;

        button {
            margin-block: .5rem;
        }
    }

    .billing-section .filter .date-selector .date-range-display {
        width: 100%;
    }
}
.settings {
}

.settings.desktop {
    display        : flex;
    flex-direction : column;
    width          : 8rem;
}

.settings.mobile {
    display        : flex;
    flex-direction : row;
}

.app-header {
    flex: 0 0 auto;
    background-color: #4a6fa5;
    color: white;
    padding-left : 0.1rem;
    padding-right: 0.1rem;
    padding-top   : 0.5rem;
    padding-bottom: 0.1rem;

    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-layout {
    display: flex;
    flex:    1 1;
    overflow: hidden;
}

.app-layout.desktop {
    flex-direction: row;
}

.app-layout.mobile {
    flex-direction: column;
}

.header-logo {
    font-family: 'Orbitron';
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 9pt;
    margin-bottom: 0.5rem;
}

.app-main {
    display:        flex;
    flex:           1 1;
    padding:        0rem;
    max-width:      1200px;
    margin:         0 auto;
    width:          100%;
    overflow: auto;
}

.app-footer {
    flex: 0 0 auto;
    padding: 1rem;
    text-align: center;
    color: black;
    background: var(--bg-toolbar);
}

.app-footer p {
    font-size: 9pt;
    margin: 0rem;
}

.logo-font {
    font-family: 'Orbitron';
    font-weight: 700;
}


.example-selector-container {
    margin-bottom: 1rem;
}

.example-selector {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    background-color: white;
    cursor: pointer;
}

.example-selector:hover {
    border-color: #999;
}

.example-selector:focus {
    outline: none;
    border-color: blue;
    box-shadow: 0 0 0 2px rgba(0, 0, 255, 0.2);
}

.api-endpoint-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.api-endpoint-documentation {
    flex: 1 1;
}

.api-endpoint-examples {
    flex: 1 1;
}

/* Two-column layout on larger screens */
@media (min-width: 1400px) {
    .api-endpoint-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .api-endpoint-documentation {
        flex-basis: 0;
        flex-grow: 1;
        min-width: 0;
    }

    .api-endpoint-examples {
        padding-top: 4rem;
        flex-basis:  0;
        flex-grow:   1;
        min-width:   0;
        align-self:  flex-start;
    }
}

.endpointinfo {
    display:        flex;
    padding-top:    1rem;
    gap:            0.8rem;
    align-items:    center;
}

.endpointinfo .method {
    margin: 2px;
    background: blue;
    color: white;
    margin: 2px;
    padding: 0.1rem 0.2rem;
    border-radius: 0.2rem;
}

.endpointinfo .url {
    font-weight: bold;
}


.parameters h2 {
    padding: 1rem 0rem;
    border-bottom: none;
}

.parameter hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-top: 0.8px solid #c0c0c0;
}

.parameterName {
    padding-left: 0.2rem;
    font-weight:  bold;
}

.parameterType {
    padding-left: 0.4rem;
    color:        #000080;
    font-weight:  bold;
}

.parameterTitle {
    display:        flex;
    align-items:    center;
    gap:            0.5rem;
}

.parameterTitle h3 {
    padding-top: 0.0rem;
}

.parameterSepartor {
    margin-left: .25rem;
    margin-right: .25rem;
}

.parameterDescription {
    margin-left:    1rem;
}

.example-language-select {
    padding:       0.4rem 0.8rem;
    border:        none;
    border-radius: 0.3rem;
    background:    inherit;
    font-size:     0.9rem;
    cursor:        pointer;
}

.example-language-select option {
    background-color:  red;
}

.example-language-select:hover {
    background:     var(--bg-focus);
}

.example-language-select:focus {
    outline:       none;
}


.api-example-code {
    margin:         2rem 0;
    padding:        0rem;
    background:     var(--bg-title-bar);
    color:          var(--fg-title-bar);
    border-radius:  0.8rem;
    border:         1.5px solid #404040;
}

.example-section {
    padding:        1rem;
    background:     var(--bg-code);
    color:          var(--fg-code);
    border-radius:  0rem 0rem 0.8rem 0.8rem;
}

.example-header-bar {
    display:         flex;
    justify-content: space-between;
    align-items:     center;
    gap:             1rem;
    padding:         0.2rem 0.4rem 0.2rem 1rem;
}

.example-title {
    margin:     0;
    flex:       1 1;
}

.example-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-title {
    padding-top: 0rem;
}


.api-example-url {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.api-example-url code {
    background: #e8e8e8;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    font-family: 'Courier New', monospace;
    color: #d63384;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: inherit;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.copy-button:hover {
    background: var(--bg-focus);
    color:      inherit;
}

.code-block {
    overflow-x:     auto;
    margin:         0;
    font-family:    'Courier New', 'Consolas', 'Monaco', monospace;
    font-size:      0.85rem;
    line-height:    1.5;
}

.code-block code {
    color:          inherit;
    background:     transparent;
    padding:        0;
    border-radius:  0;
    font-family:    inherit;
    white-space:    pre;
}


.api-navigator {
    width:              300px;
    flex-shrink:        0;
    background-color:   var(--bg-primary);
    border-right:       1px solid #e0e0e0;
    padding:            2rem 1rem;
    box-shadow:         2px 0 4px rgba(0, 0, 0, 0.1);
    position:           fixed;
    left:               0;
    bottom:             0;
    overflow-y:         auto;
    z-index:            1;
}

.navigator-title {
    color:           var(--h2-color);
    font-size:       1.2rem;
    margin-bottom:   1.5rem;
    padding-bottom:  0.5rem;
    border-bottom:   1.5px solid var(--status-info);
    width:           -webkit-fit-content;
    width:           fit-content;
    text-decoration: none;
}

.navigator-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.navigator-item {
    display:            block;
    padding:            0.75rem;
    background-color:   inherit;
    border:             1px solid #e0e0e0;
    border-radius:      4px;
    text-decoration:    none;
    color:              inherit;
    transition:         all 0.2s ease;
}

.navigator-item:hover {
    background-color:   #f0f0f0;
    border-color:       #3498db;
    box-shadow:         0 2px 4px rgba(0, 0, 0, 0.1);
}

.navigator-item.active {
    background-color:   #e3f2fd;
    border-color:       #3498db;
    box-shadow:         0 2px 4px rgba(52, 152, 219, 0.2);
}

.navigator-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.navigator-item-title {
    font-weight: 600;
    color: #2c3e50;
    flex: 1 1;
}

.navigator-item-url {
    font-size: 0.85rem;
    color: #666;
    font-family: monospace;
    word-break: break-all;
}

.method-badge {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.method-badge.method-post {
    background-color: #3498db;
    color: white;
}

.method-badge.method-get {
    background-color: #27ae60;
    color: white;
}

.method-badge.method-delete {
    background-color: #e74c3c;
    color: white;
}


.main.apidocs {
    min-height: 100%;
}

.ref-main {
    flex:           1 1;
    overflow-y:     auto;
    display:        flex;
    position:       relative;
    flex-direction: column;
}

.api-content {
    display:        flex;
    flex-direction: column;
    flex:           1 1;
    min-width:      0;
    margin-left:    300px;
}

.apiref {
    flex:           1 1;
    display:        flex;
    flex-direction: column;
    min-height:     800px;
}

.document-view {
    flex: 1 1;
    min-width: 0;
}

.footer {
    z-index: 2;
}

.ref-vert {
    display: flex;
    flex-direction: row;
    position: relative;
    flex: 1 1;
}



:root {
    --bg-primary: #f0f0f0;
    --fg-primary: black;
    --bg-input:   white;
    --fg-input:   black;
    --brd-input:  black;

    --bg-assistant:   #f8f8f8;
    --fg-assistant:   black;
    --bold-assistant: normal;
    --brd-assistant:  black;

    --fg-thinking:    #606060;

    --bg-box:           var(--bg-assistant);
    --bg-box-selected:  #9b9bff;

    --bg-title-bar:     #93b3e3;
    --fg-title-bar:     #404040;

    --bg-focus:         #afcdfb;

    /* Code */
    --bg-code:          #e0e0e0;
    --fg-code:          black;
    --fg-code-keys:     #005900;
    --fg-code-symbol:   #7b6304;
    --fg-code-number:   #000d53;
    --fg-code-text:     #930000;
    --brd-code:         gray;

    /* ToolBar */
    --bg-toolbar:        #e0e0e0;

    /* Buttons */
    --ok-btn-background:        #0078d4;
    --ok-btn-background-hover:  #2098f4;
    --ok-btn-color:             #F0F0F0;
    --ok-btn-color-hover:       #FFFFFF;

    --cancel-btn-background:    #CCC;
    --cancel-btn-color:         black;

    --btn-color:                #000000;
    --btn-color-disabled:       #808080;
    --btn-selected:             white;
    --bg-btn-selected:          blue;

    --primary-btn-bg:           #0073e6;
    --primary-btn-color:        white;

    /* Links */
    --link-color:               #61dafb;
    --link-color-hover:         #4fc3f7;
    --footer-link-hover:        white;
    --footer-link:              #e0e0e0;

    /* User message */
    --bg-user-message:          #5c5cdf;
    --fg-user-message:          white;

    /* Text colors */
    --h1-color:          black;
    --h2-color:          black;
    --p-color:           #222;
    --text-muted:        #888;
    --text-secondary:    #666;
    --text-tertiary:     #bbb;
    --text-timestamp:    #888;

    /* Borders */
    --brd-light:         #e5e7eb;
    --brd-medium:        #ccc;
    --brd-dark:          #888;
    --brd-input-hover:   #5986F1;
    --brd-input-focus:   #205AE3;
    --brd-input-light:   #A8C5FF;

    /* Backgrounds */
    --bg-card:           white;
    --bg-card-hover:     #f9fafb;
    --bg-section:        #f8fafc;
    --bg-overlay:        rgba(128, 128, 128, 0.6);
    --bg-gradient-start:  rgb(229, 236, 255);
    --bg-gradient-end:    #a3cfff;
    --bg-contact:        rgb(200, 227, 255);
    --bg-white:          white;
    --bg-white-translucent: rgba(255, 255, 255, 0.95);

    /* Shadows */
    --shadow-sm:         0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md:         0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg:         0 6px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl:         0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-nav:        0px 5px 10px rgba(1, 0, 0, 0.15);
    --shadow-overlay:    0 12px 20px rgba(0, 0, 0, 0.80);
    --shadow-button:     0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-button-hover: 0 6px 16px rgba(0, 0, 0, 0.2);
    --shadow-inset:      inset 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Status colors */
    --status-success:    #10b981;
    --status-success-dark: #059669;
    --status-error:      #ef4444;
    --status-error-dark: #dc2626;
    --status-warning:    #f59e0b;
    --status-warning-dark: #d97706;
    --status-info:       #9333ea;
    --status-info-dark:  #7e22ce;
    --status-pending:    #6366f1;
    --status-pending-dark: #4f46e5;

    /* Progress colors */
    --progress-bg:       #e5e7eb;
    --progress-low:      linear-gradient(135deg, #ef4444, #dc2626);
    --progress-medium:   linear-gradient(135deg, #f59e0b, #d97706);
    --progress-high:     linear-gradient(135deg, #10b981, #059669);
    --progress-complete: linear-gradient(135deg, #6366f1, #4f46e5);

    /* Gradients */
    --gradient-primary:  linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-header:   linear-gradient(135deg, #4f46e5, #7c3aed);
    --gradient-home:     white;

    /* Table colors */
    --table-header-bg:   #f8fafc;
    --table-header-fg:   #374151;
    --table-row-hover:   #f9fafb;
    --table-border:      #e5e7eb;

    /* Icon/Image */
    --icon-bg:           #00000018;
    --icon-shadow:       2px 2px 4px rgba(0,0,0,0.10);
    --icon-text-shadow:  1px 1px 2px rgba(0,0,0,0.8);
    --icon-border:       #bbb;

    /* Error/Alert colors */
    --error-color:       #C00000;
    --error-color-hover: #FF0000;
    --error-bg:          #ff8080;
    --error-focus-shadow: 0 0 0 1.5px rgba(255, 0, 0, 0.6);
    --focus-shadow:       0 0 0 1.5px rgba(128, 128, 255, 0.6);

    /* App header */
    --app-header-bg:     #282c34;
    --app-header-fg:     white;

    /* Layout */
    --max-width:         1024px;
    --big-pad:           clamp(0.5rem, 3.2vw, 2.0rem);
    --gap:               calc(var(--big-pad) * 1.5);

    --font:              font-family: manrope, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
}

[data-theme="dark"] {
    --bg-primary:       #202020;
    --fg-primary:       #c0c0c0;

    --bg-title-bar:     #808080;
    --fg-title-bar:     #ffffff;

    --bg-input:         #404040;
    --fg-input:         #ff8f00;
    --brd-input:        #a66e58;

    --bg-assistant:     #01051c;
    --fg-assistant:     #e3e0d7;
    --bold-assistant:   bold;
    --brd-assistant:    #ff8300cf;

    --fg-thinking:      #d5d5d5;

    --bg-box:           var(--bg-assistant);
    --bg-box-selected:  #031331;

    /* ToolBar */
    --bg-toolbar:       #181818;

    --btn-color:        #C0C0C0;
    --btn-selected:     white;
    --bg-btn-selected:  #ff4800;

    /* Code */
    --bg-code:          #2a2a2a;
    --fg-code:          #e0e0e0;
    --brd-code:         #555;

    /* Links */
    --link-color:       #7bb3f0;
    --link-color-hover: #9cc5f5;
    --footer-link-hover: #e0e0e0;

    /* User message */
    --bg-user-message:  #4a4a9f;
    --fg-user-message:  #e0e0e0;

    /* Text colors */
    --h1-color:         white;
    --h2-color:         white;
    --p-color:          #ccc;
    --text-muted:       #aaa;
    --text-secondary:   #bbb;
    --text-tertiary:    #888;
    --text-timestamp:   #aaa;

    /* Borders */
    --brd-light:        #404040;
    --brd-medium:       #555;
    --brd-dark:         #666;
    --brd-input-hover:  #7a9ff1;
    --brd-input-focus:  #4080e3;
    --brd-input-light:  #6a8fcf;

    /* Backgrounds */
    --bg-card:          #2a2a2a;
    --bg-card-hover:    #333333;
    --bg-section:       #252525;
    --bg-overlay:       rgba(0, 0, 0, 0.8);
    --bg-gradient-start: #1a1a2e;
    --bg-gradient-end:   #2a2a4e;
    --bg-contact:       #2a3a4f;
    --bg-white:         #2a2a2a;
    --bg-white-translucent: rgba(42, 42, 42, 0.95);

    /* Shadows */
    --shadow-sm:        0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md:        0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg:        0 6px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl:        0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-nav:       0px 5px 10px rgba(0, 0, 0, 0.4);
    --shadow-overlay:   0 12px 20px rgba(0, 0, 0, 0.9);
    --shadow-button:    0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-button-hover: 0 6px 16px rgba(0, 0, 0, 0.5);
    --shadow-inset:     inset 0 2px 4px rgba(0, 0, 0, 0.3);

    /* Status colors - slightly adjusted for dark mode */
    --status-success:       #20c997;
    --status-success-dark:  #10b981;
    --status-error:         #ff5555;
    --status-error-dark:    #ef4444;
    --status-warning:       #ffb84d;
    --status-warning-dark:  #f59e0b;
    --status-info:          #202020;
    --status-info-dark:     #9333ea;
    --status-pending:       #7b7fff;
    --status-pending-dark:  #6366f1;

    /* Progress colors */
    --progress-bg:       #404040;
    --progress-low:      linear-gradient(135deg, #ff5555, #ef4444);
    --progress-medium:   linear-gradient(135deg, #ffb84d, #f59e0b);
    --progress-high:     linear-gradient(135deg, #20c997, #10b981);
    --progress-complete: linear-gradient(135deg, #7b7fff, #6366f1);

    /* Gradients */
    --gradient-primary:  linear-gradient(135deg, #5a6fd8 0%, #6a4a92 100%);
    --gradient-header:   linear-gradient(135deg, #3f3fd5, #6c2aed);
    --gradient-home:     linear-gradient(#1a1a2e, #2a2a4e);

    /* Table colors */
    --table-header-bg:   #2a2a2a;
    --table-header-fg:   #e0e0e0;
    --table-row-hover:   #333333;
    --table-border:      #404040;

    /* Icon/Image */
    --icon-bg:           #ffffff18;
    --icon-shadow:       2px 2px 4px rgba(0,0,0,0.30);
    --icon-text-shadow:  1px 1px 2px rgba(0,0,0,0.9);
    --icon-border:       #666;

    /* Error/Alert colors */
    --error-color:       #ff6666;
    --error-color-hover: #ff8888;
    --error-bg:          #ff4040;
    --error-focus-shadow: 0 0 0 1.5px rgba(255, 100, 100, 0.6);
    --focus-shadow:       0 0 0 1.5px rgba(150, 150, 255, 0.6);

    /* App header */
    --app-header-bg:     #1a1a1a;
    --app-header-fg:     #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    height:     100%;
    margin:     0;
    font-size:  16px;
}

@media (max-width: 400px) {
    html {
        font-size: 16px; /* Smaller on mobile */
    }
}

@media (min-width: 401px) and (max-width: 800px) {
    html {
        font-size: 16px;
    }
}

body {
    height: 100%;
    margin: 0;
    font-family: manrope, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f0f0f0;
    background-color: var(--bg-primary);
    color:            black;
    color:            var(--fg-primary);
}

h1 {
    color: black;
    color: var(--h1-color);
}

.main-page {
    min-width:      300px;
    margin:         0 auto;
    padding:        0;
    overflow-y:     hidden;
    display:        flex;
    flex-direction: column;
    height:         100vh;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}


.pay-success-container {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--big-pad);
  text-align: center;
}

.content {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

.content h2 {
  color: var(--h2-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content p {
  color: var(--p-color);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.content p:last-of-type {
  margin-bottom: 0;
}

.status-pending h2 {
  color: var(--status-warning-dark);
}

.status-success h2 {
  color: var(--status-success-dark);
}

.status-failed h2 {
  color: var(--status-error-dark);
}

.link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--link-color);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--link-color-hover);
}

.pay-cancel-container {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--big-pad);
  text-align: center;
}

.content {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

.content h2 {
  color: var(--h2-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content p {
  color: var(--p-color);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.content p:last-of-type {
  margin-bottom: 0;
}

.link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--link-color);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link:hover {
  color: var(--link-color-hover);
}

.investors {
    overflow: auto;
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-block: 1rem;

    h1 {
        font-weight: bolder;
        font-size: 3rem;
        border-bottom: 2px solid var(--status-info);
    }
}
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    gap: 2rem;
    align-items: start;
    padding-block: 0.5rem;
}

.team-text {
    display: flex;
    flex-direction: column;
    
    p {
        padding-bottom: 1rem;
    }
}

.images {
    position: relative;
    height: 100%;
    min-height: 200px;
}

.images .erl {
    position: absolute;
    top: 10%;
    left: 10%;
}

.images .sith {
    position: absolute;
    bottom: 10%;
    right: 10%;
}

.images .erl,
.images .sith {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images img {
    height: 12rem;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #4a90d9;
    border: 3px solid var(--status-info, #4a90d9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: var(--shadow-md, 0 2px 8px rgba(0, 0, 0, 0.15));
}

.images p {
    margin-top: 0.3rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    color: var(--h2-color, #333);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
    }

    .images {
        position: static;
        height: auto;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
        gap: 1.5rem;
        justify-items: center;
        padding-block: 0.5rem;
    }

    .images .erl,
    .images .sith {
        position: static;
    }

    .images img {
        height: 10rem;
    }
}


.contact {
    background:     var(--bg-contact);
    border-radius:  1rem;
    border:         2px solid var(--fg-primary);
    padding:        2rem 2rem;
    width:          100%;
}

@media (max-width: 800px) {
    .contact {
        padding: 2rem 1.4rem;
    }
}

.contact-form {
    display:        flex;
    flex-direction: column;
    gap:            1.5rem;
}

.contact h2 {
    margin:         0 auto;
    width:          -webkit-fit-content;
    width:          fit-content;
    padding-top:    1rem;
    padding-bottom: 2rem;
    border:         none;
}

.textarearesize.contract-textarea {
    background:     var(--bg-input);
    border:         1px solid var(--brd-input-light);
    font-family:    manrope;
    width:          100%;
    border-radius:  0.5rem;
    padding:        0.75rem 1rem;
    transition:     border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input textarea:hover {
    outline:        none;
    border-color:   var(--brd-input-hover);
}

.contact-input textarea:focus {
    outline:        none;
    border-color:   var(--brd-input-focus);
}

.contact-input input {
    font-family:    manrope;
    background:     var(--bg-input);
    border:         1px solid var(--brd-input-light);
    width:          100%;
    border-radius:  0.5rem;
    padding:        0.75rem 1rem;
    transition:     border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input input:hover {
    outline:        none;
    border-color:   var(--brd-input-hover);
}

.contact-input input:focus {
    outline:        none;
    border-color:   var(--brd-input-focus);
}

.contact .checkbox {
    display:        flex;
    flex-direction: row;
    gap:            0.5rem;
    padding-left:   0.5rem;
}

.contact .checkbox span {
    font-family: manrope;
}

.contact .checkbox input {
    width: auto;
    padding-right: 1rem;
}

.contact .btn {
    background-color: var(--primary-btn-bg);
    width: 100%;
    color: var(--primary-btn-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}


.contest-intro {
    padding-bottom: 2rem;
}



/*# sourceMappingURL=main.ee2c89cd.css.map*/