/* /Components/ChatPanel.razor.rz.scp.css */
.chat-badge[b-3gf8yvp9lq] {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #4caf50;
    color: #fff;
    border-radius: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 3px;
}

.chat-panel[b-3gf8yvp9lq] {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 560px;
    max-width: 95vw;
    background: var(--card-background);
    color: var(--page-text-color);
    border-left: 1px solid var(--border-color);
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.chat-panel-header[b-3gf8yvp9lq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1rem;
    color: var(--page-text-color);
}

.chat-close[b-3gf8yvp9lq] { background: none; border: none; cursor: pointer; color: var(--secondary-text-color); font-size: 1rem; padding: 0; }
.chat-close:hover[b-3gf8yvp9lq] { color: var(--page-text-color); }

.chat-panel-body[b-3gf8yvp9lq] { display: flex; flex: 1; overflow: hidden; }

.chat-group-list[b-3gf8yvp9lq] {
    width: 190px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    background: var(--tertiary-gray);
}

.chat-group-item[b-3gf8yvp9lq] {
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 0.3rem;
    position: relative;
    transition: background 0.1s;
}
.chat-group-item:hover[b-3gf8yvp9lq], .chat-group-item.active[b-3gf8yvp9lq] { background: var(--hover-background); }

.chat-group-name[b-3gf8yvp9lq] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--page-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 22px;
}

.chat-group-preview[b-3gf8yvp9lq] {
    font-size: 0.72rem;
    color: var(--secondary-text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.chat-group-badge[b-3gf8yvp9lq] {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    background: #4caf50;
    color: #fff;
    border-radius: 10px;
    font-size: 0.62rem;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 3px;
    font-weight: 700;
}

.chat-new-btn[b-3gf8yvp9lq] {
    margin: 0.5rem;
    padding: 0.35rem 0.6rem;
    background: none;
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    color: var(--secondary-text-color);
    cursor: pointer;
    font-size: 0.78rem;
    transition: all 0.15s;
}
.chat-new-btn:hover[b-3gf8yvp9lq] { border-color: var(--primary-color); color: var(--primary-color); }

.chat-messages-area[b-3gf8yvp9lq] { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.chat-msg-header[b-3gf8yvp9lq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.chat-msg-header-title[b-3gf8yvp9lq] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.chat-messages-list[b-3gf8yvp9lq] { flex: 1; overflow-y: auto; padding: 0.8rem; display: flex; flex-direction: column; gap: 0.5rem; }

.chat-no-group[b-3gf8yvp9lq] { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--secondary-text-color); font-size: 0.85rem; }
.chat-loading[b-3gf8yvp9lq]  { text-align: center; color: var(--secondary-text-color); font-size: 0.8rem; padding: 0.5rem; }

.chat-msg[b-3gf8yvp9lq] { display: flex; flex-direction: column; max-width: 80%; }
.chat-msg.mine[b-3gf8yvp9lq]   { align-self: flex-end;  align-items: flex-end; }
.chat-msg.theirs[b-3gf8yvp9lq] { align-self: flex-start; align-items: flex-start; }

.chat-msg-sender[b-3gf8yvp9lq] { font-size: 0.72rem; color: var(--secondary-text-color); margin-bottom: 2px; }

.chat-msg-bubble[b-3gf8yvp9lq] {
    padding: 0.45rem 0.7rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}
.mine   .chat-msg-bubble[b-3gf8yvp9lq] { background: var(--primary-color); color: #fff; border-bottom-right-radius: 3px; }
.theirs .chat-msg-bubble[b-3gf8yvp9lq] { background: var(--secondary-gray); color: var(--page-text-color); border-bottom-left-radius: 3px; }

.chat-msg-time[b-3gf8yvp9lq] { font-size: 0.68rem; color: var(--secondary-text-color); margin-top: 2px; }

.chat-input-row[b-3gf8yvp9lq] { display: flex; gap: 0.4rem; padding: 0.7rem; border-top: 1px solid var(--border-color); background: var(--card-background); }

.chat-input[b-3gf8yvp9lq] {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--input-background);
    color: var(--page-text-color);
    font-size: 0.85rem;
    outline: none;
}
.chat-input:focus[b-3gf8yvp9lq] { border-color: var(--primary-color); }

.chat-send-btn[b-3gf8yvp9lq] {
    padding: 0.45rem 0.8rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.15s;
}
.chat-send-btn:disabled[b-3gf8yvp9lq] { opacity: 0.4; cursor: default; }
.chat-send-btn:not(:disabled):hover[b-3gf8yvp9lq] { opacity: 0.85; }

.chat-backdrop[b-3gf8yvp9lq] { position: fixed; inset: 0; z-index: 1999; background: rgba(0,0,0,0.3); }

.chat-new-dialog[b-3gf8yvp9lq] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-background);
    color: var(--page-text-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem;
    z-index: 3000;
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.chat-new-dialog-header[b-3gf8yvp9lq] { font-weight: 700; margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: center; }
.chat-back-btn[b-3gf8yvp9lq] { background: none; border: none; cursor: pointer; color: var(--page-text-color); padding: 0; margin-right: 8px; }

.chat-new-dialog-body[b-3gf8yvp9lq] { display: flex; flex-direction: column; gap: 0.5rem; }

.chat-new-option[b-3gf8yvp9lq] {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 0.8rem;
    color: var(--page-text-color);
    cursor: pointer;
    text-align: left;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.chat-new-option:hover[b-3gf8yvp9lq] { border-color: var(--primary-color); }
.chat-new-option-icon[b-3gf8yvp9lq] { font-size: 1.4rem; }
.chat-new-option-title[b-3gf8yvp9lq] { font-weight: 600; font-size: 0.85rem; }
.chat-new-option-sub[b-3gf8yvp9lq] { font-size: 0.75rem; color: var(--secondary-text-color); }

.chat-user-search[b-3gf8yvp9lq] {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--input-background);
    color: var(--page-text-color);
    font-size: 0.85rem;
    width: 100%;
    outline: none;
}

.chat-group-name-input[b-3gf8yvp9lq] {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--input-background);
    color: var(--page-text-color);
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    margin-bottom: 4px;
}

.chat-user-list[b-3gf8yvp9lq] { max-height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }

.chat-user-item[b-3gf8yvp9lq] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.1s;
}
.chat-user-item:hover[b-3gf8yvp9lq], .chat-user-item.selected[b-3gf8yvp9lq] { background: var(--hover-background); }

.chat-user-avatar[b-3gf8yvp9lq] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.chat-user-info[b-3gf8yvp9lq] { display: flex; flex-direction: column; }
.chat-user-name[b-3gf8yvp9lq] { font-size: 0.83rem; font-weight: 500; color: var(--page-text-color); }
.chat-user-role[b-3gf8yvp9lq] { font-size: 0.7rem; color: var(--secondary-text-color); }
.chat-user-check[b-3gf8yvp9lq] { width: 16px; text-align: center; color: var(--primary-color); font-weight: 700; }

.chat-selected-chips[b-3gf8yvp9lq] { display: flex; flex-wrap: wrap; gap: 4px; }
.chat-user-chip[b-3gf8yvp9lq] {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chat-user-chip button[b-3gf8yvp9lq] { background: none; border: none; color: white; cursor: pointer; padding: 0; font-size: 0.8rem; line-height: 1; }

.chat-new-backdrop[b-3gf8yvp9lq] { position: fixed; inset: 0; z-index: 2999; background: rgba(0,0,0,0.2); }
/* /Components/NotificationBell.razor.rz.scp.css */
.notif-badge[b-aufqz6ugxp] {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #e05555;
    color: #fff;
    border-radius: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    padding: 0 3px;
}

.notif-panel[b-aufqz6ugxp] {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    width: 320px;
    max-height: 420px;
    background: var(--card-background);
    color: var(--page-text-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notif-panel-header[b-aufqz6ugxp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--page-text-color);
}

.notif-header-actions[b-aufqz6ugxp] { display: flex; gap: 0.75rem; align-items: center; }

.notif-mark-all[b-aufqz6ugxp] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--primary-color, #3A7BD5);
    padding: 0;
}

.notif-dismiss-all[b-aufqz6ugxp] { color: var(--secondary-text-color); }
.notif-dismiss-all:hover[b-aufqz6ugxp] { color: #e05050; }

.notif-dismiss[b-aufqz6ugxp] {
    position: absolute;
    top: 4px;
    right: 4px;
    background: none;
    border: none;
    color: var(--secondary-text-color);
    font-size: 0.85rem;
    padding: 0 4px;
    line-height: 1;
    cursor: pointer;
}
.notif-dismiss:hover[b-aufqz6ugxp] { color: #e05050; }

.notif-panel-body[b-aufqz6ugxp] { overflow-y: auto; flex: 1; }

.notif-empty[b-aufqz6ugxp] {
    padding: 1.5rem;
    text-align: center;
    color: var(--secondary-text-color, #888);
    font-size: 0.85rem;
}

.notif-item[b-aufqz6ugxp] {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.1s;
    position: relative;
}
.notif-item:hover[b-aufqz6ugxp] { background: var(--hover-background); }
.notif-item:last-child[b-aufqz6ugxp] { border-bottom: none; }

.notif-unread[b-aufqz6ugxp] { border-left: 3px solid var(--primary-color, #3A7BD5); }

.notif-title[b-aufqz6ugxp] { font-weight: 600; font-size: 0.85rem; color: var(--page-text-color); }
.notif-body[b-aufqz6ugxp]  { font-size: 0.78rem; color: var(--secondary-text-color); margin-top: 2px; }
.notif-time[b-aufqz6ugxp]  { font-size: 0.72rem; color: var(--secondary-text-color); margin-top: 3px; }

.notif-backdrop[b-aufqz6ugxp] { position: fixed; inset: 0; z-index: 1999; }

.notif-type-badge[b-aufqz6ugxp] {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    margin-bottom: 3px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: white;
}

.notif-type-ticket-erstellt[b-aufqz6ugxp]   { background: #3498DB; }
.notif-type-ticket-zugewiesen[b-aufqz6ugxp] { background: #9B59B6; }
.notif-type-kommentar-neu[b-aufqz6ugxp]     { background: #27AE60; }
.notif-type-status-geaendert[b-aufqz6ugxp]  { background: #F39C12; }
/* /Forms/ChangePassword.razor.rz.scp.css */
.full-page-flex[b-mqgcpznh57] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.change-password-container[b-mqgcpznh57] {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 400px;
    max-width: 95vw;
    animation: fadeSlideIn 0.5s ease-out forwards;
}

.change-password-container h3[b-mqgcpznh57] { color: var(--page-text-color); margin-bottom: 1.5rem; }

.change-password-container label[b-mqgcpznh57] { display: block; margin-top: 12px; font-size: 0.88rem; color: var(--page-text-color); }

.change-password-container input[b-mqgcpznh57] {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    border: 1px solid var(--input-border-color);
    border-radius: 6px;
    background-color: var(--input-background);
    color: var(--input-text-color);
}

.change-password-container .btn[b-mqgcpznh57] { margin-top: 1.5rem; width: 100%; }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-z8dignfcgw] {
    position: relative;
    display: flex;
    flex-direction: row;
    overflow-y: hidden;
}
    .page > main[b-z8dignfcgw] {
        padding: var(--general-min-distance);
        gap: calc(0.5 * var(--general-min-distance));
        flex: 1;
    }

.menu-toggle-icon[b-z8dignfcgw] {
    display: inline-block;
    width: 20px;
    height: 38px;
    background-image: var(--icon-openclosemenu);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.7s ease-in-out;
}

.rotate-open[b-z8dignfcgw] {
    transform: rotate(90deg);
}

.rotate-closed[b-z8dignfcgw] {
    transform: rotate(-90deg);
}

.sidebar[b-z8dignfcgw] {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    background: linear-gradient(to top, var(--nav-color-2, var(--secondary-color)) 0%, var(--nav-color-1, var(--primary-color)) 90%);
    border-right: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
    left: calc(-1 * var(--sidebar-width));
    transition: all 0.3s ease;
}
    .sidebar.open[b-z8dignfcgw] {
        left: 0px;
    }

.body[b-z8dignfcgw] {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: var(--general-small-distance);
    transition: all 0.3s ease;
    width: calc(100% - var(--general-small-distance));
    height: 100vh;
    overflow: hidden;
    background-color: var(--tertiary-gray);
}

    .body.open[b-z8dignfcgw] {
        left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

.navbar-toggle[b-z8dignfcgw] {
    position: fixed;
    background-color: var(--primary-color);
    display: inline-flex;
    z-index: 1001;
    top: 60px;
    left: 0px;
    transition: all 0.3s ease;
}
    .navbar-toggle.open[b-z8dignfcgw] {
        left: 220px;
    }

    .top-row[b-z8dignfcgw] {
        background-color: var(--card-background);
        border-bottom: 1px solid var(--border-color);
        justify-content: flex-end;
        height: 3.5rem;
        display: flex;
        align-items: center;
    }

    .top-row[b-z8dignfcgw]  a, .top-row[b-z8dignfcgw]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-z8dignfcgw]  a:hover, .top-row[b-z8dignfcgw]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-z8dignfcgw]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row[b-a14lthgk8m] {
    background: linear-gradient(to bottom, var(--nav-color-1, var(--primary-color)), var(--nav-color-2, var(--primary-color)));
    color: var(--primary-text-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px 8px;
    gap: 6px;
}

.nav-toolbar[b-a14lthgk8m] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-tool-btn[b-a14lthgk8m] {
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.25s ease;
    position: relative;
    color: var(--primary-text-color);
    flex-shrink: 0;
    font-size: 1rem;
}

    .nav-tool-btn:hover[b-a14lthgk8m] {
        background-color: rgba(255,255,255,0.15);
        border-color: rgba(255,255,255,0.6);
        transform: scale(1.08);
    }

.nav-user-info[b-a14lthgk8m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
    color: var(--primary-text-color);
}

.nav-user-name[b-a14lthgk8m] {
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.nav-user-role[b-a14lthgk8m] {
    font-size: 0.7rem;
    opacity: 0.7;
}

.navbar-logo[b-a14lthgk8m] {
    width: 180px;
    height: 38px;
    max-width: 100%;
    background-image: var(--customer-logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.navbar-column[b-a14lthgk8m] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.navbar-footer[b-a14lthgk8m] {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.navbar-logo-footer[b-a14lthgk8m] {
    height: 24px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.nav-footer-brand[b-a14lthgk8m] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.1rem;
}

.bi-nav-menu[b-a14lthgk8m] {
    background-size: contain;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 8px;
    flex-shrink: 0;
}

    .bi-nav-menu.assembly[b-a14lthgk8m]      { background-image: var(--icon-assembly); }
    .bi-nav-menu.boot[b-a14lthgk8m]          { background-image: var(--icon-boot); }
    .bi-nav-menu.template[b-a14lthgk8m]      { background-image: var(--icon-template); }
    .bi-nav-menu.stopwatch[b-a14lthgk8m]     { background-image: var(--icon-stopwatch); }
    .bi-nav-menu.dashboard[b-a14lthgk8m]     { background-image: var(--icon-overview); }
    .bi-nav-menu.import[b-a14lthgk8m]        { background-image: var(--icon-import); }
    .bi-nav-menu.project[b-a14lthgk8m]       { background-image: var(--icon-project); }
    .bi-nav-menu.user[b-a14lthgk8m]          { background-image: var(--icon-user); }
    .bi-nav-menu.category[b-a14lthgk8m]      { background-image: var(--icon-category); }
    .bi-nav-menu.password[b-a14lthgk8m]      { background-image: var(--icon-key); }
    .bi-nav-menu.logout[b-a14lthgk8m]        { background-image: var(--icon-logout); }
    .bi-nav-menu.settings[b-a14lthgk8m]      { background-image: var(--icon-settings); }
    .bi-nav-menu.bell[b-a14lthgk8m]          { background-image: var(--icon-bell);  width: 24px; height: 24px; }
    .bi-nav-menu.chat[b-a14lthgk8m]          { background-image: var(--icon-chat);  width: 24px; height: 24px; }
    .bi-nav-menu.presence[b-a14lthgk8m]      { background-image: var(--icon-presence); }

.nav-item[b-a14lthgk8m] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-a14lthgk8m] { padding-top: 1rem; }
    .nav-item:last-of-type[b-a14lthgk8m]  { padding-bottom: 1rem; }

    .nav-item[b-a14lthgk8m]  a {
        color: var(--page-text-color);
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-a14lthgk8m]  a.active {
            background-color: rgba(255,255,255,0.12);
            color: var(--page-text-color);
        }

        .nav-item[b-a14lthgk8m]  a:hover {
            background-color: rgba(255,255,255,0.08);
            color: var(--page-text-color);
        }

@media (min-width: 641px) {
    .collapse[b-a14lthgk8m] { display: block; }
    .nav-scrollable[b-a14lthgk8m] { height: calc(100vh - 3.5rem); overflow-y: auto; }
}
/* /Pages/Install.razor.rz.scp.css */
.inst-page[b-4hz11qf0f8] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 60%, #4a2080 100%);
}

.inst-card[b-4hz11qf0f8] {
    width: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ── Purple header banner ── */
.inst-header[b-4hz11qf0f8] {
    background: linear-gradient(135deg, #4a2080, #7c3aed);
    padding: 24px 28px 20px;
    text-align: center;
}

.inst-logo[b-4hz11qf0f8] {
    width: 180px;
    height: 40px;
    background-image: var(--customer-logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-bottom: 14px;
}

.inst-label[b-4hz11qf0f8] {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.inst-title[b-4hz11qf0f8] {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.inst-subtitle[b-4hz11qf0f8] {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.4;
}

/* ── Form body ── */
.inst-body[b-4hz11qf0f8] {
    background: #1e1e2e;
    padding: 24px 28px 28px;
}

.inst-field[b-4hz11qf0f8] {
    margin-bottom: 14px;
}

.inst-field label[b-4hz11qf0f8] {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: 5px;
}

.inst-field input[b-4hz11qf0f8] {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #3d3d5c;
    border-radius: 7px;
    background: #13131f;
    color: #eee;
    font-size: 0.92rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.inst-field input:focus[b-4hz11qf0f8] {
    outline: none;
    border-color: #7c3aed;
}

.inst-btn[b-4hz11qf0f8] {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.inst-btn:hover:not(:disabled)[b-4hz11qf0f8] {
    background: #6d28d9;
    transform: scale(1.02);
}

.inst-btn:disabled[b-4hz11qf0f8] {
    opacity: 0.7;
    cursor: wait;
}

.inst-error[b-4hz11qf0f8] {
    background: rgba(224, 85, 85, 0.15);
    border: 1px solid rgba(224, 85, 85, 0.4);
    color: #e05555;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.inst-success[b-4hz11qf0f8] {
    text-align: center;
    color: #ddd;
    line-height: 1.7;
}

.inst-success-icon[b-4hz11qf0f8] {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.inst-success p[b-4hz11qf0f8] {
    margin: 6px 0;
}

.inst-success .inst-btn[b-4hz11qf0f8] {
    margin-top: 18px;
}
/* /Pages/Login.razor.rz.scp.css */
/* Login-specific: box has direct padding (no inner wrapper needed) */
.login-box[b-6t2q4be348] { padding: 2rem; text-align: center; }
/* /Pages/Register.razor.rz.scp.css */
.reg-page[b-5vd75c4ahb] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b3d20 0%, #1a6b3a 60%, #27AE60 100%);
}

.reg-card[b-5vd75c4ahb] {
    width: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

/* ── Green header banner ── */
.reg-header[b-5vd75c4ahb] {
    background: linear-gradient(135deg, #1a7a4a, #27AE60);
    padding: 22px 28px 18px;
    text-align: center;
}

.reg-logo[b-5vd75c4ahb] {
    width: 180px;
    height: 40px;
    background-image: var(--customer-logo-url);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-bottom: 12px;
}

.reg-label[b-5vd75c4ahb] {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.reg-title[b-5vd75c4ahb] {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* ── Form body ── */
.reg-body[b-5vd75c4ahb] {
    background: #2a2a3a;
    padding: 24px 28px 28px;
}

.reg-field[b-5vd75c4ahb] {
    margin-bottom: 14px;
}

.reg-field label[b-5vd75c4ahb] {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #bbb;
    margin-bottom: 5px;
}

.reg-field input[b-5vd75c4ahb] {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid #444;
    border-radius: 7px;
    background: #1e1e2e;
    color: #eee;
    font-size: 0.92rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.reg-field input:focus[b-5vd75c4ahb] {
    outline: none;
    border-color: #27AE60;
}

.reg-btn[b-5vd75c4ahb] {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px;
    background: #27AE60;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}

.reg-btn:hover:not(:disabled)[b-5vd75c4ahb] {
    background: #1e8e4e;
    transform: scale(1.02);
}

.reg-btn:disabled[b-5vd75c4ahb] {
    opacity: 0.7;
    cursor: wait;
}

.reg-login-link[b-5vd75c4ahb] {
    margin-top: 16px;
    text-align: center;
    font-size: 0.83rem;
    color: #888;
}

.reg-login-link a[b-5vd75c4ahb] {
    color: #27AE60;
    text-decoration: none;
}

.reg-error[b-5vd75c4ahb] {
    background: rgba(224, 85, 85, 0.15);
    border: 1px solid rgba(224, 85, 85, 0.4);
    color: #e05555;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.reg-success[b-5vd75c4ahb] {
    text-align: center;
    color: #ddd;
    line-height: 1.7;
}

.reg-success-icon[b-5vd75c4ahb] {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.reg-success p[b-5vd75c4ahb] {
    margin: 6px 0;
}

.reg-success .reg-btn[b-5vd75c4ahb] {
    margin-top: 18px;
}

/* Honeypot — never visible to real users */
.reg-hp[b-5vd75c4ahb] {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
