.ticket-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 10px;
}

.ticket-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.chat-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-bubble:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.ticket-reply-form textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 5px;
    resize: vertical; /* Sadece aşağıya büyüsün */
}

.ticket-reply-form input[type=file] {
    margin-bottom: 5px;
}

.ticket-reply-form input[type=submit] {
    background-color: #005baa;
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .chat-bubble {
        max-width: 100%;
    }
}
