/*
| RGB                 |
| ------------------- |
|pink   187, 56, 144  |
|pink   255, 90, 130  |
|róse   200, 60, 60   |
|red    255, 25, 25   |
|grün   80, 255, 120  |
|lime   80, 255, 160  |
|orange 255, 150, 30  |
|purple 178, 70, 183  |
|purple 123, 93, 201  |
|purple 133, 40, 208  |
|white  250, 250, 250 |
|grey   74, 68, 68    |
|black  25, 25, 25    |
|black  9, 9, 9       |
|black  3, 2, 2       |
| ------------------- |
*/

/* FONTS AND ICONS */
@import url(https://db.onlinewebfonts.com/c/33ca94f43a53fc634323a6fe191ffd64?family=trend-sans-w00-four);
@import url(https://db.onlinewebfonts.com/c/5fc6f4fd75e944a52a342ab2c7f100f1?family=Montserrat);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);


.body-home {
    background: linear-gradient(
        rgb(25, 25, 25),
        rgb(210, 30, 150)
    );
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.body {
    background: rgb(25, 25, 25);
}

.title-text {
    font-family: 'trend-sans-w00-four', sans-serif;
    color: rgb(133, 40, 208);
    font-size: 100px;
}

.pink {
    width: 100px;
    height: 100px;
    background-color: rgb(210, 30, 150);
}
.purple {
    width: 100px;
    height: 100px;
    background-color: rgb(133, 40, 208);
}

.red {
    width: 100px;
    height: 100px;
    background-color: rgb(255, 25, 25);
}

.button-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.field {
    background-color: rgb(25, 25, 25);
    color: rgb(133, 40, 208);
    border-style: solid;
    border-color: rgb(133, 40, 208);
    border-radius: 5px;
    border-width: 2px;
    margin: 2px;
}

#login-window {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button {
    background-color: rgb(25, 25, 25);
    color: rgb(133, 40, 208);
    border-style: solid;
    border-color: rgb(133, 40, 208);
    border-radius: 5px;
    border-width: 2px;
    margin: 2px;
    transition-duration: 0.4s;
    outline: none;
}

.button:hover {
    background-color: rgb(133, 40, 208);
    color: rgb(25, 25, 25);
    border-style: solid;
    border-color: rgb(25, 25, 25);
    border-radius: 5px;
    border-width: 2px;
    margin: 2px;
}

.button:focus {
    background-color: rgb(133, 40, 208);
    color: rgb(25, 25, 25);
    border-style: solid;
    border-color: rgb(255, 25, 25);
    border-radius: 5px;
    border-width: 2px;
    margin: 2px;
}

.login {
    height: 30px;
    width: 200px;
    font-size: 20px;
    font-family: "Montserrat";
}

.chat-list {
    width: 60px;
    height: calc(100vh - 24px);
}

.chat-field {
    width: 92vw;
    height: calc(100vh - 24px);
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
}

.app {
    margin: 0px;
    display: flex;
}

.chat-box {
    height: 40px;
    width: 92vw;
    margin: -2px;
    display: flex;
}

.message-field {
    width: 300px;
}

.input-chat-button {
    display: none;
    width: 32px;
    height: 32px;
}

.label-chat-button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages {
    display: flex;
    align-self: flex-start;
    margin: 2px 0px 2px 0px;
    flex-direction: column;
}

.usr_avatar {
    border-radius: 100%;
    border-color: rgb(25, 25, 25);
    border-width: 2px;
    border-style: solid;
    height: 40px;
    width: 40px;
    margin: 2px;
    transition-duration: 0.4s;
}

.usr_avatar:hover {
    border-radius: 100%;
    border-color: rgb(133, 40, 208);
    border-width: 2px;
    border-style: solid;
    height: 40px;
    width: 40px;
    margin: 2px;
}

.usr_avatar:focus {
    border-radius: 100%;
    border-color: rgb(133, 40, 208);
    border-width: 2px;
    border-style: solid;
    height: 40px;
    width: 40px;
    margin: 2px;
}

.message-bubble {
    display: flex;
    width: fit-content;
    height: fit-content;
    max-width: calc(92vw - 8px);
}

.font-usr-name {
    display: flex;
    font-family: "Montserrat";
    font-weight: bolder;
    margin: 0px 2px 0px 2px;
    justify-content: space-between;
}

.font-msg {
    display: flex;
    font-family: "Montserrat";
    font-weight: 100;
    font-size: 15px;
    margin: -2px 4px 2px 2px;
    text-align: left;
    word-wrap: break-word;
}

.label-msg-button {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-msg-button {
    display: none;
    width: 15px;
    height: 15px;
}

.phantom {
    display: none;
}