/* Estilos para tabela de tickets */.tickets-table {    width: 100%;    border-collapse: collapse;    margin: 20px 0;    background: white;    border-radius: 8px;    overflow: hidden;    box-shadow: 0 2px 10px rgba(0,0,0,0.1);}.tickets-table th {    background: #1e3a8a;    color: white;    padding: 15px 10px;    text-align: left;    font-weight: 600;    font-size: 14px;}.tickets-table td {    padding: 12px 10px;    border-bottom: 1px solid #e5e7eb;    font-size: 14px;}.tickets-table tr:hover {    background: #f8fafc;}.tickets-table tr:last-child td {    border-bottom: none;}/* Status badges */.status {    padding: 4px 8px;    border-radius: 12px;    font-size: 12px;    font-weight: 600;    text-transform: uppercase;}.status-open {    background: #fef3c7;    color: #92400e;}.status-in_progress {    background: #dbeafe;    color: #1e40af;}.status-resolved {    background: #d1fae5;    color: #065f46;}.status-closed {    background: #f3f4f6;    color: #374151;}/* Priority badges */.priority {    padding: 4px 8px;    border-radius: 12px;    font-size: 12px;    font-weight: 600;    text-transform: uppercase;}.priority-low {    background: #d1fae5;    color: #065f46;}.priority-medium {    background: #fef3c7;    color: #92400e;}.priority-high {    background: #fed7d7;    color: #c53030;}.priority-urgent {    background: #fecaca;    color: #dc2626;}/* Botões de ação */.btn-sm {    padding: 6px 12px;    font-size: 12px;    margin: 0 2px;}.btn-primary {    background: #3b82f6;    color: white;    border: none;    border-radius: 4px;    cursor: pointer;}.btn-primary:hover {    background: #2563eb;}.btn-secondary {    background: #6b7280;    color: white;    border: none;    border-radius: 4px;    cursor: pointer;}.btn-secondary:hover {    background: #4b5563;}/* Status Select Dropdown */.status-select {    padding: 4px 8px;    border-radius: 4px;    font-size: 12px;    font-weight: 600;    border: 1px solid #d1d5db;    cursor: pointer;    min-width: 120px;}.status-select:focus {    outline: none;    border-color: #3b82f6;    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);}.status-select.status-open {    background: #fef3c7;    color: #92400e;    border-color: #fde68a;}.status-select.status-in_progress {    background: #dbeafe;    color: #1e40af;    border-color: #93c5fd;}.status-select.status-resolved {    background: #d1fae5;    color: #065f46;    border-color: #6ee7b7;}.status-select.status-closed {    background: #f3f4f6;    color: #374151;    border-color: #d1d5db;}/* Responsividade */@media (max-width: 768px) {    .tickets-table {        font-size: 12px;    }        .tickets-table th,    .tickets-table td {        padding: 8px 6px;    }        .btn-sm {        padding: 4px 8px;        font-size: 11px;    }        .status-select {        min-width: 100px;        font-size: 11px;    }}