/*#region  LOGIN BOX */
.login-info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 150px;
    width: 100%;
    border: none;
    background-color: var(--primary-color);
    border-top: solid 6px var(--secondary-color);
    border-bottom: solid 6px var(--secondary-color);
    animation: expand-vertical 0.3s 1s forwards;
}

.login-info-box-inner-container {
    height: 100%;
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--text-color);
    opacity: 0;
    animation: fade 0.3s 0.4s forwards;
}

.login-info-box-inner-container line-separator {
    height: 2px;
    margin: 10px 0;
    background-color: var(--text-color);
}

.login-info-user , .login-info-error-title {
    font-size: 16px;
    font-family: ibm-light , sans-serif;
}

.login-info-text {
    font-size: 14px;
    font-family: ibm-light , sans-serif;
}

.login-info-error-title {
    color: #ff4c7b;
}

.login-info-error {
    font-size: 14px;
    font-family: ibm-light , sans-serif;
    color: #ff4c7b;
    text-align: center;
}

/*#endregion  Login Box */

/*#region  SYSTEM MESSAGE */
#systemPrompt.generic-overlay {
    pointer-events: all;
}

.system-notification-panel {
    position: absolute;
    bottom: 15px;
    right: 15px;
    height: fit-content;
    width: fit-content;
    z-index: 200;
}
.system-message-title-bar ,.systemPrompt-title-bar {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 30px;
    box-sizing: border-box;
    padding: 10px;
    max-width: 400px;
    width: 100%;
    margin-bottom: 10px;
    background-color: var(--secondary-color);
    color: var(--text-secondary-color);
}

.system-message-box {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    height: fit-content;
    box-sizing: border-box;
    padding: 10px;
    max-width: 400px;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-secondary-color);
}

.system-message-box div {
    margin: 10px 0;
}

.qmSystem-message-box {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: fit-content;
    padding: 10px 20px;
    box-sizing: border-box;
    width: fit-content;
    min-width: 250px;
    min-height: 50px;
    background-color: var(--primary-color);
    color: var(--text-color);
    -webkit-filter: drop-shadow(0 0 5px black);
    filter: drop-shadow(0 0 5px black);
    z-index: 100;
}

.qmSystem-message-box .generic-container {
    display: flex;
    align-items: center;
}

.qmSystemMessageIcon {
    margin-right: 20px;
}

.qmSystemMessageIcon svg {
    height: 30px;
    width: 30px;
    fill: var(--text-color);
}

/*#endregion  SYSTEM MESSAGE */


/*#region  SYSTEM PROMPT */
.system-prompt.visible {
    z-index: 9999999;
    display: flex;
}

.systemPrompt-title-bar {
    font-weight: 400;
    max-width: 600px;
    background-color: var(--primary-color);
    border: solid 2px var(--secondary-color);
    text-align: center;
}

.systemPrompt-main-box {
    max-width: 600px;
    max-height: fit-content;
    height: 300px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: solid 2px var(--secondary-color);
    transition: height 1s;
    animation: expand-vertical 0.3s 1s forwards;
}

.systemPrompt-main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    animation: fade 0.3s 0.4s forwards;
}

.system-prompt-message-container div{
    margin: 10px 0;
    color: var(--text-color-75);
}

.system-prompt .generic-button-4 {
    border-color: var(--text-color-50);
}

/*#endregion  SYSTEM PROMPT*/
