#chat-container {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* ✅ Seznam konverzací */
#chat-list-container {
    width: 15%;
    background: #f4f4f4;
    border-right: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    height: 100vh;
}

/* ✅ Seznam zpráv */
#chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

/* ✅ Formulář vždy dole */
#messageForm {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #e9e9e9;
    border-top: 1px solid #ccc;
    position: sticky;
    bottom: 0;
}

/* ✅ Textové pole přes celou šířku */
#messageInput {
    flex: 1;
    resize: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    height: 50px;
    font-size: 14px;
}

/* ✅ Velké tlačítko ODESLAT */
#sendButton {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#sendButton:hover {
    background-color: #0056b3;
}

/* ✅ Styling pro odchozí zprávy */
.sent {
    text-align: right;
    color: black;
    background-color: yellowgreen;
    padding: 5px;
    border-radius: 5px;
    margin: 5px 0;
}

/* ✅ Styling pro příchozí zprávy */
.received {
    text-align: left;
    color: black;
    background-color: lightskyblue;
    padding: 5px;
    border-radius: 5px;
    margin: 5px 0;
}

/* ✅ Indikátor přečtení */
.read-status-received-pos {
    font-size: 10pt;
    color: darkgreen;
    font-weight: bold;
    text-align: right;
    float: right;
}

.read-status-sent-pos {
    font-size: 10pt;
    color: darkgreen;
    font-weight: bold;
    text-align: left;
    float: left;
}

.read-status-received-neg {
    font-size: 10pt;
    color: tomato;
    font-weight: bold;
    text-align: right;
    float: right;
}

.read-status-sent-neg {
    font-size: 10pt;
    color: tomato;
    font-weight: bold;
    text-align: left;
    float: left;
}

/* ✅ Indikátor online statusu */
#user-status {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}

/* ✅ Čas zprávy */
.datetimeSent {
    font-size: 8pt;
    color: gray;
    display: block;
    text-align: left;
}

.datetimeRecieved {
    font-size: 8pt;
    color: gray;
    display: block;
    text-align: right;
}
