.login-layout {
    display: flex;
    padding: 2rem;
    max-width: 500px;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-family: "Montserrat";
}

.login {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    margin-top: 20vh;
}

.login-layout button,
.login button {
    width: 100%;
}

.login-header {
    display: flex;
    flex-direction: column;
}

.login-header h3 {
    font-weight: 400;
    font-family: "Montserrat";
}

.login-header label {
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    font-weight: 300;
    font-size: 13px;
}

.login-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.components-reconnect-first-attempt-visible,
.components-reconnect-repeated-attempt-visible,
.components-reconnect-failed-visible,
.components-rejoining-animation {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible,
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible,
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible {
    display: block;
}

#components-reconnect-modal {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }
}

    #components-reconnect-modal::backdrop {
        background-color: rgba(0, 0, 0, 0.4);
        animation: components-reconnect-modal-fadeInOpacity 0.5s ease-in-out;
        opacity: 1;
    }

@keyframes components-reconnect-modal-slideUp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

#components-reconnect-modal button:hover {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active {
    background-color: #6b9ed2;
}

.components-rejoining-animation {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div {
    position: absolute;
    border: 3px solid #0087ff;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.indicator {
    border-radius: 12px;
    border: 1px solid #EBEBEB !important;
    min-height: 227px !important;
    min-width: 250px !important;
}

.indicator-data {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.indicator-header {
    justify-content: start;
    justify-items: start;
    display: flex;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.indicator-header label {
    margin-top: auto;
    margin-bottom: auto;
}

.gray {
    background-color: #FAFAFA;
}

.indicator-collection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
    padding: 1rem;
    border-radius: 12px;
}

.i-item {
    display: flex;
    flex-direction: column;
}

.i-item-header {
    display: flex;
}

.i-item-header svg {
    margin-right: 0.2rem;
    margin-top: auto;
    margin-bottom: auto;
}

.i-item-data {
    margin-top: 0.5rem;
}

.i-item-data label:first-of-type {
    font-weight: 700;
    font-size: 21px;
}

.indicator-prefix {
    margin-left: 3px;
    margin-top: 3px;
    font-weight: 400;
    text-transform: uppercase !important;
    font-size: 14px;
    color: #B7B7B7 !important;
}

.i-item-header label {
    margin-top: auto;
    margin-bottom: auto;
}

.reflective {
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%) !important;
    border: none;
    border-radius: 20px;
    color: #e0e0e0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.reflective .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reflective .header label:first-of-type {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.reflective .important .line label:last-of-type {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.reflective .important .line label:last-of-type .copy-btn {
    margin-left: 10px !important;
}

.reflective .header label:first-of-type .copy-btn {
    margin-left: 10px !important;
}

    .reflective .header .status {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.5rem 1rem;
        background-color: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

.reflective .header .status label {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.reflective .important {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reflective .important .line {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

    .reflective .important .line:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }

.reflective .important .line label:first-of-type {
    color: #b0b0b0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
}

.reflective .important .line label:last-of-type {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.information {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.information .info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

    .information .info:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.12);
    }

.information .info label:first-of-type {
    color: #b0b0b0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
}

.information .info label:last-of-type {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.reflective .settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reflective .settings .settings-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .reflective .settings .settings-item:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.1) 100%);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

.title {
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.settings-item .params {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.settings-item .param {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.settings-item .param:last-child {
    border-bottom: none;
}

.settings-item .param label:first-of-type {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.settings-item .param label:last-of-type {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

.connected-users {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-group:last-child {
    margin-bottom: 0;
}

.group-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.user-list {
    color: #b0b0b0;
    font-size: 13px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
    line-height: 1.6;
}

.no-users {
    color: #888888;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.action {
    padding: 2rem;
    display: flex;
    gap: 1rem;
}

    .action button {
        flex: 1;
    }

.reflective label {
    font-size: 13px;
    color: #e0e0e0;
}

.params label {
    font-weight: 600;
    font-size: 12px !important;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mud-dialog-content .line {
    margin-top: 1rem;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.list .list-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

    .list .list-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.12);
    }

.reflective-invoice-data {
    display: flex;
    flex-direction: row;
    font-size: 13px;
    height: 100%;
}

.reflective-invoice {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    padding: 1rem;
    height: 100%;
}

.data-left {
    flex: 1 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.data-right {
    flex: 1 1;
}

.reflective-line {
    display: flex;
}

.reflective-line div:first-of-type {
    flex: 1 1;
}

.reflective-line div:last-of-type {
    flex: 1 1;
    text-align: end;
}

.reflective-line div:last-of-type label:last-of-type {
    color: #020202;
    font-weight: 500;
}

.important label:first-of-type {
    font-weight: 600;
    color: #020202;
}

.reflective-invoice-action {
    gap: 5px;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.reflective-line {
    margin-bottom: 0.25rem;
}

.data-right {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
}

.img-bg {
    background-color: #e6e6e6;
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.data-right img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.not-found-base64 {
    background-color: #232323;
    width: 100%;
    height: 100%;
    display: flex;
    margin-left: 1rem;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    justify-content: center;
    justify-items: center;
}

.not-found-base64 label {
    margin-top: auto;
    margin-bottom: auto;
}

.reflective-invoice {
}

.simple-stats {
    display: flex;
    flex-direction: column;
    background-color: rgb(250, 250, 250);
    padding: 1rem;
    border-radius: 10px;
    color: #000;
    flex: 1 1;
    max-width: 300px;
    text-wrap: nowrap;
}

.simple-stats .data {
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 24px;
}

.simple-stats label:first-of-type {
    font-weight: 500;
    font-size: 15px;
}

.user-wallet {
    border-radius: 12px;
    border: 1px solid #EBEBEB !important;
    background-color: #FAFAFA;
    padding: 1rem;
    flex: 1;
    max-width: 440px;
}

.wallet-line {
    display: flex;
    text-wrap: nowrap;
}

.wallet-line label {
    font-size: 13px;
    margin-bottom: 0.2rem;
}

.wallet-line label:last-of-type {
    margin-left: auto;
    font-weight: 600;
}

.user-wallet-action {
    margin-top: 1rem !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;

}

.merchant-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 16px;
}

.merchant-item {
    box-sizing: border-box;
    border-radius: 12px;
}

.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 16px;
}

.providers-item {
    box-sizing: border-box;
    background-color: #ddd;
    border-radius: 12px;
}

.traider-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 16px;
}

.traider-item {
    box-sizing: border-box;
    border-radius: 12px;
}

.users-header {
    display: flex;
    gap: 10px;
    max-width: 800px;
}

.user-item {
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    cursor: pointer;
}

.user-item:hover {
    background-color: #fafafa40;
}

.item-row {
    margin-top: auto;
    margin-bottom: auto;
    display: grid;
    flex: 1;
}

.item-row span {
    color: #838383;
    font-size: 13px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
}

.item-row label {
    margin-left: auto;
    margin-right: auto;
}

.user-info {
    display: flex;
}

.user-action {
    margin-left: auto;
}

.user-info {
    display: flex;
    width: 100%;
}

.user-item .user-action {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
    text-wrap: nowrap;
    gap: 5px;
}

.user-item .user-name {
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    line-height: 40px;
    margin-left: 1rem;
}

.wallets-list {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

.wallets-item {
    box-sizing: border-box;
    border-radius: 12px;
    flex: 1 1 32.333%;
    max-width: 452px;
}

.appels-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 16px;
}

.appels-item {
    box-sizing: border-box;
    background-color: #ddd;
    border-radius: 12px;
}

.terminals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 16px;
}

.terminals-item {
    box-sizing: border-box;
    background-color: #ddd;
    border-radius: 12px;
}
