/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-19r1yodfv8] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-19r1yodfv8] {
    flex: 1;
}

.sidebar[b-19r1yodfv8] {
    background: var(--light-blue-accent);
}

.top-row[b-19r1yodfv8] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-19r1yodfv8]  a, .top-row[b-19r1yodfv8]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-19r1yodfv8]  a:hover, .top-row[b-19r1yodfv8]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-19r1yodfv8]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-19r1yodfv8] {
        justify-content: space-between;
    }

        .top-row[b-19r1yodfv8]  a, .top-row[b-19r1yodfv8]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-19r1yodfv8] {
        flex-direction: row;
    }

    .sidebar[b-19r1yodfv8] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-19r1yodfv8] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-19r1yodfv8]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-19r1yodfv8], article[b-19r1yodfv8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-19r1yodfv8] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-19r1yodfv8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Pages/AiChatComponent/AiChat.razor.rz.scp.css */
/* Custom scrollbar */
.chat-container[b-qcfdtqvj35]::-webkit-scrollbar {
    width: 6px;
}

.chat-container[b-qcfdtqvj35]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-container[b-qcfdtqvj35]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

    .chat-container[b-qcfdtqvj35]::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.3);
    }

/* Message animations */
.message-enter[b-qcfdtqvj35] {
    animation: messageSlide-b-qcfdtqvj35 0.3s ease-out;
}

@keyframes messageSlide-b-qcfdtqvj35 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#messageInput[b-qcfdtqvj35],
.display-messages[b-qcfdtqvj35] {
    white-space: pre-wrap;
}

.product-selection-btn[b-qcfdtqvj35] {
    color: #fff;
    border-radius: 40px;
}

.client-info[b-qcfdtqvj35] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.form-group[b-qcfdtqvj35] {
    display: flex;
    flex-direction: column;
}

.header-div[b-qcfdtqvj35] {
    justify-content: center;
}

.header-inner-div[b-qcfdtqvj35] {
    max-width: 768px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.chat-page[b-qcfdtqvj35] {
    max-width: 768px;
    width: 100%;
}
.recording-container[b-qcfdtqvj35] {
    background-color: transparent;
    padding: 20px;
    border-radius: 20px;
    align-items: center;
    gap: 15px;
    min-width: 100%;
    grid-template-columns: min-content min-content;
}

.mic-icon[b-qcfdtqvj35] {
    width: 50px;
    height: 50px;
    background-color: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: pulse-b-qcfdtqvj35 1.5s ease-in-out infinite;
}

@keyframes pulse-b-qcfdtqvj35 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.waveform[b-qcfdtqvj35] {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    height: 50px;
}

.waveform-bar[b-qcfdtqvj35] {
    width: 4px;
    background-color: black;
    border-radius: 2px;
    animation: wave-b-qcfdtqvj35 1s ease-in-out infinite;
}

    .waveform-bar:nth-child(1)[b-qcfdtqvj35] {
        height: 20px;
        animation-delay: 0s;
    }

    .waveform-bar:nth-child(2)[b-qcfdtqvj35] {
        height: 35px;
        animation-delay: 0.1s;
    }

    .waveform-bar:nth-child(3)[b-qcfdtqvj35] {
        height: 45px;
        animation-delay: 0.2s;
    }

    .waveform-bar:nth-child(4)[b-qcfdtqvj35] {
        height: 30px;
        animation-delay: 0.3s;
    }

    .waveform-bar:nth-child(5)[b-qcfdtqvj35] {
        height: 50px;
        animation-delay: 0.4s;
    }

    .waveform-bar:nth-child(6)[b-qcfdtqvj35] {
        height: 25px;
        animation-delay: 0.5s;
    }

    .waveform-bar:nth-child(7)[b-qcfdtqvj35] {
        height: 40px;
        animation-delay: 0.6s;
    }

    .waveform-bar:nth-child(8)[b-qcfdtqvj35] {
        height: 35px;
        animation-delay: 0.7s;
    }

    .waveform-bar:nth-child(9)[b-qcfdtqvj35] {
        height: 45px;
        animation-delay: 0.8s;
    }

    .waveform-bar:nth-child(10)[b-qcfdtqvj35] {
        height: 28px;
        animation-delay: 0.9s;
    }

@keyframes wave-b-qcfdtqvj35 {
    0%, 100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.timer[b-qcfdtqvj35] {
    color: black;
    font-size: 18px;
    font-weight: 500;
    min-width: 60px;
}

.action-buttons[b-qcfdtqvj35] {
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.action-btn[b-qcfdtqvj35] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s;
}

.delete-btn[b-qcfdtqvj35] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

    .delete-btn:hover[b-qcfdtqvj35] {
        background-color: rgba(255, 255, 255, 0.3);
    }

.send-btn[b-qcfdtqvj35] {
    background-color: #25d366;
    color: white;
}

    .send-btn:hover[b-qcfdtqvj35] {
        background-color: #22c55e;
    }

.typing-indicator span[b-qcfdtqvj35] {
    width: 8px;
    height: 8px;
    background-color: #90949c;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bounce-b-qcfdtqvj35 1.4s infinite ease-in-out both;
}
    .typing-indicator span:nth-child(1)[b-qcfdtqvj35] {
        animation-delay: -0.32s;
    }

    .typing-indicator span:nth-child(2)[b-qcfdtqvj35] {
        animation-delay: -0.16s;
    }
@keyframes bounce-b-qcfdtqvj35 {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.client-info-submit-btn:disabled[b-qcfdtqvj35] {
    cursor: not-allowed;
    opacity: 0.6;
    background: gray;
}
