/* Simple Support Tickets - Frontend Styles */
.sst-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.sst-table th, .sst-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #ddd; }
.sst-table th { font-weight: 600; background: #f9f9f9; }
.sst-table tr:hover td { background: #fafafa; }
.sst-priority-low      { color: #2e7d32; font-weight: 500; }
.sst-priority-medium   { color: #e65100; font-weight: 500; }
.sst-priority-high     { color: #c62828; font-weight: 500; }
.sst-priority-critical { color: #fff; background: #b71c1c; padding: 2px 7px; border-radius: 3px; font-weight: 600; }
.sst-status-pending  { color: #e65100; }
.sst-status-closed   { color: #888; }
.sst-add-ticket, .sst-ticket-detail { max-width: 700px; }
.sst-add-ticket input[type=text], .sst-add-ticket select { width: 100%; max-width: 500px; padding: 6px 8px; border: 1px solid #ccc; border-radius: 4px; }
.sst-pagination { margin-top: 1rem; display: flex; gap: 6px; align-items: center; }
.sst-pagination a { padding: 4px 10px; border: 1px solid #ccc; border-radius: 3px; text-decoration: none; }
.sst-pagination a:hover { background: #f0f0f0; }
.sst-message-row { padding: 12px 0; border-bottom: 1px solid #eee; }
.sst-message-row:last-child { border-bottom: none; }
@media (max-width: 600px) {
    .sst-table thead { display: none; }
    .sst-table tr { display: block; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 4px; }
    .sst-table td { display: block; text-align: right; padding: 8px 12px; }
    .sst-table td::before { content: attr(data-label); float: left; font-weight: 600; }
}
