body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.chat-title {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            background-color: #f5f5f5;
        }

        .chat-title img {
            max-width: 150px;
            height: auto;
            display: block;
        }

.turbo {
    color: #FF3B30; /* Red */
}

.send {
    color: #4A90E2; /* Blue */
}

.chat-container {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 80vh;
    overflow: hidden;
}

.chat-header {
    background: #4a90e2;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-section {
    display: flex;
    flex-direction: column;
}

.header-section label {
    margin-bottom: 5px;
}

.header-section input,
.header-section select,
.header-section button {
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.header-section input {
    flex-grow: 1;
}

.chat-body {
    background: white;
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #4a90e2;
    color: white;
}

.chat-footer input[type="text"] {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
    background: #ffffff;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

.chat-footer input[type="file"] {
    display: none;
}

.chat-footer .file-label {
    cursor: pointer;
    margin-right: 10px;
    padding: 10px;
    background-color: #4a90e2;
    color: white;
    border-radius: 5px;
}

.chat-footer .file-name {
    font-size: 0.9em;
    color: #333;
    margin-right: 10px;
}

.chat-footer button {
    background: #4a90e2;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-footer button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    word-wrap: break-word;
    position: relative;
    display: flex;
    flex-direction: column;
}

.message .timestamp {
    font-size: 0.8em;
    color: #888;
    text-align: right;
}

.me {
    background-color: #dcf8c6;
    align-self: flex-end;
    border-radius: 10px 10px 0 10px;
    text-align: right;
    margin-left: auto;
}

.them {
    background-color: #ffffff;
    align-self: flex-start;
    border-radius: 10px 10px 10px 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
    margin-right: auto;
}

.message a {
    color: #075e54;
    text-decoration: none;
}

.message a:hover {
    text-decoration: underline;
}

.message img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.message a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
    display: block;
    margin-top: 10px;
}

.message a:hover {
    text-decoration: underline;
}