.sts-tickets-dashboard,
.sts-ticket-form-wrapper {
    max-width: 800px;
    margin: 2em auto;
    padding: 1em;
}

.sts-ticket-item {
    border: 1px solid #ddd;
    margin-bottom: 1em;
    padding: 1em;
    border-radius: 4px;
}

.sts-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5em;
}

.sts-ticket-subject {
    margin: 0;
    font-size: 1.2em;
}

.sts-ticket-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 1em;
}

.sts-ticket-status {
    padding: 0.3em 0.8em;
    border-radius: 3px;
    font-size: 0.9em;
    text-transform: capitalize;
}

.status-open .sts-ticket-status {
    background: #e3f2fd;
    color: #1976d2;
}

.status-in-progress .sts-ticket-status {
    background: #fff3e0;
    color: #f57c00;
}

.status-closed .sts-ticket-status {
    background: #efebe9;
    color: #5d4037;
}

.sts-ticket-message {
    margin: 1em 0;
    padding: 1em;
    background: #f5f5f5;
    border-radius: 4px;
}

.sts-form .form-group {
    margin-bottom: 1em;
}

.sts-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.sts-form .form-control {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sts-form-messages {
    margin-top: 1em;
}

.sts-form-messages .error {
    color: #d32f2f;
    background: #ffebee;
    padding: 0.5em;
    border-radius: 4px;
}

.sts-form-messages .success {
    color: #388e3c;
    background: #e8f5e9;
    padding: 0.5em;
    border-radius: 4px;
}

.sts-pagination {
    margin-top: 2em;
    text-align: center;
}

.sts-pagination .page-numbers {
    padding: 0.5em 1em;
    margin: 0 0.2em;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
}

.sts-pagination .current {
    background: #e3f2fd;
    color: #1976d2;
    border-color: #1976d2;
}