/* _content/Aifraid/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-087lr5ksq1] {
    position: relative;
    display: flex;
    flex-direction: column;
}
/* _content/Aifraid/Components/Pages/Ai.razor.rz.scp.css */
body[b-z5xn829kj5] {
    padding-top: 200px;  
    padding-bottom: 100px;  
}

.fixed-header[b-z5xn829kj5],
.fixed-bottom[b-z5xn829kj5],
.scrollable-content[b-z5xn829kj5] {
    width: 80%; /* Set to 80% of the page width */
    margin: 0 auto; /* Center the container */
}

.fixed-header[b-z5xn829kj5] {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.fixed-bottom[b-z5xn829kj5] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.scrollable-content[b-z5xn829kj5] {
    overflow-y: auto;
    margin-top: 75px;
    height: calc(100vh - 175px); /* Adjusted for the fixed header and fixed bottom heights */
    padding: 15px;
}

.user[b-z5xn829kj5] {
    font-size: 1.2em;
    font-weight: bold;
    color: black;
}

.rounded-right[b-z5xn829kj5] {
    border-radius: 0 0.25rem 0.25rem 0;
}

.message-container[b-z5xn829kj5] {
    display: flex;
    flex-direction: column; /* Stellt sicher, dass die Kinder-Elemente vertikal angeordnet sind */
    width: 100%; /* Stellt sicher, dass der Container die volle Breite einnimmt */
    padding: 10px;
    margin-bottom: 10px;
}

.message-header[b-z5xn829kj5] {
    display: flex;
    align-items: center; /* Zentriert die Items vertikal */
}

.message-content[b-z5xn829kj5] {
    margin-top: 5px; /* Fügt einen Abstand oberhalb des Nachrichtentexts hinzu */
}

.loading[b-z5xn829kj5] {
    cursor: wait;
}
/* _content/Aifraid/Components/Pages/AudioPlayer.razor.rz.scp.css */
.message-button button[b-33yuxl1ury] {
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 10px;
}

.playing[b-33yuxl1ury] {
    color: green;
}

.loading[b-33yuxl1ury] {
    animation: spin-b-33yuxl1ury 1s linear infinite;
}

@keyframes spin-b-33yuxl1ury {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* _content/Aifraid/Components/Pages/EditDialog.razor.rz.scp.css */
.edit-dialog-overlay[b-o54ffn2v7h] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 9999; /* Ensure the dialog is on top of other elements */
}

.edit-dialog[b-o54ffn2v7h] {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-30%, -30%);
    background-color: white;
    padding: 10px;
    width: 70%;
    height: 70%;
    z-index: 10000; /* Ensure the dialog is on top of the overlay */
    display: flex;
    flex-direction: column;
}

.edit-dialog > div:first-child[b-o54ffn2v7h] {
    align-self: flex-start;
}

.table-container[b-o54ffn2v7h] {
    flex-grow: 1;
    overflow-y: auto;
}

.button-container[b-o54ffn2v7h] {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}
