﻿/* Configurações da modal para cobrir a tela */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto; /* Permitir rolagem na modal */
}

.ticket-container {
    width: 60%;
    max-width: 100%;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-height: 90vh; /* Limitar a altura para caber na tela */
    overflow-y: auto; /* Permitir rolagem interna */
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .ticket-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .ticket-container {
        width: 95%;
        padding: 10px;
    }
}

.ticket-details, .new-message, .messages-section {
    margin-top: 20px;
}

    .ticket-details div {
        margin-bottom: 10px;
    }

.messages-section {
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.message {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.new-message {
    margin-top: 20px;
}

.form-control {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

button.btn {
    margin-top: 10px;
}
