.user-message {
    text-align: right;
    margin: 5px 0;
    padding: 8px 12px;
    background-color: #e0f7fa !important; /* Leicht unterschiedliche Hintergrundfarbe */
    border-radius: 12px 12px 0 12px;
    display: inline-block;
    max-width: 80%;
    color: #005662;
    margin-right: 10px !important; /* Einrückung nach links */
}

.gpt-response {
    text-align: left;
    margin: 5px 0;
    padding: 8px 12px;
    background-color: #f0f0f0 !important;
    border-radius: 12px 12px 12px 0;
    display: inline-block;
    max-width: 80%;
    color: #333;
    margin-left: 10px !important; /* Einrückung nach rechts */
}

#user-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s;
    border-color: #007bff !important; /* Fokusfarbe */
}

#send-button {
    padding: 10px 15px;
    background-color: #007bff !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.2s;
}

#send-button:hover {
    background-color: #0056b3 !important;
    transform: translateY(-2px);
}