/* /Components/Pages/Chat.razor.rz.scp.css */
.chat-app[b-fkzv67is2h] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    height: calc(100vh - 14rem);
    min-height: 32rem;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}

@media (max-width: 768px) {
    .chat-app[b-fkzv67is2h] {
        grid-template-columns: 1fr;
    }

    .chat-app .chat-contacts[b-fkzv67is2h] {
        display: none;
    }
}

.chat-contacts[b-fkzv67is2h] {
    background: var(--bs-tertiary-bg);
    border-right: 1px solid var(--bs-border-color);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.chat-contact[b-fkzv67is2h] {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--bs-border-color);
    text-decoration: none;
    color: inherit;
}

.chat-contact:hover[b-fkzv67is2h] {
    background: var(--bs-body-bg);
}

.chat-contact.active[b-fkzv67is2h] {
    background: var(--bs-body-bg);
    border-left: 3px solid var(--bs-primary);
    padding-left: calc(1rem - 3px);
}

.chat-avatar[b-fkzv67is2h] {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.chat-avatar.online[b-fkzv67is2h]::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--bs-success);
    border: 2px solid var(--bs-body-bg);
    border-radius: 50%;
}

.chat-conversation[b-fkzv67is2h] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.chat-header[b-fkzv67is2h] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-messages[b-fkzv67is2h] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: var(--bs-tertiary-bg);
}

.chat-message[b-fkzv67is2h] {
    display: flex;
    margin-bottom: 0.75rem;
}

.chat-message.me[b-fkzv67is2h] {
    justify-content: flex-end;
}

.chat-bubble[b-fkzv67is2h] {
    max-width: 70%;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.them .chat-bubble[b-fkzv67is2h] {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-bottom-left-radius: 0.25rem;
}

.chat-message.me .chat-bubble[b-fkzv67is2h] {
    background: var(--bs-primary);
    color: #fff;
    border-bottom-right-radius: 0.25rem;
}

.chat-time[b-fkzv67is2h] {
    font-size: 0.7rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.15rem;
}

.chat-composer[b-fkzv67is2h] {
    padding: 0.75rem;
    border-top: 1px solid var(--bs-border-color);
}
/* /Components/Pages/FormsWizard.razor.rz.scp.css */
.wizard-steps[b-ldj4ndqhxp] {
    counter-reset: step;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.wizard-steps[b-ldj4ndqhxp]::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bs-border-color);
    z-index: 0;
}

.wizard-steps li[b-ldj4ndqhxp] {
    position: relative;
    z-index: 1;
    background: var(--bs-body-bg);
    padding: 0 0.75rem;
    text-align: center;
    color: var(--bs-secondary-color);
    font-size: 0.875rem;
}

.wizard-steps li[b-ldj4ndqhxp]::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: var(--bs-tertiary-bg);
    border: 2px solid var(--bs-border-color);
    color: var(--bs-secondary-color);
    font-weight: 600;
}

.wizard-steps li.active[b-ldj4ndqhxp] {
    color: var(--bs-primary);
    font-weight: 600;
}

.wizard-steps li.active[b-ldj4ndqhxp]::before {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.wizard-steps li.completed[b-ldj4ndqhxp]::before {
    background: var(--bs-success);
    border-color: var(--bs-success);
    color: #fff;
    content: '\f633';
    font-family: 'bootstrap-icons';
}
