.ticket {
    background: #f1f1f1;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}
.ticket.closed { background: #f8d7da; }
.ticket.open { background: #d4edda; }

.ticket button {
    margin-top: 5px;
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.ticket button.delete {
    background: red;
}


form {
    display: flex;
    flex-direction: column;
}

form input {
    padding: 8px;
    margin: 5px 0;
}

form button {
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

form button:hover {
    background: #45a049;
}

.container {
    max-width: 400px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}


