body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
}

.support-container {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
}

.filters {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.ticket-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ticket-body {
    margin-top: 10px;
}

.ticket-body textarea {
    width: 100%;
    height: 80px;
    margin-top: 10px;
}

.ticket-body button {
    margin-top: 10px;
    padding: 6px 12px;
}