/* Request Logs Table Styling (to match Manage Keys style) */
#requestLogsTable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    min-width: 800px;
    border: 1px solid #dee2e6;
}

#requestLogsTable thead th {
    background: #f8f9fa;
    color: #495057;
    border: none;
    padding: 15px;
    font-weight: 600;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

#requestLogsTable thead th.sortable-column {
    background: #f8f9fa;
    color: #495057;
    cursor: pointer;
}

/* Ensure row separation with visible borders */
#requestLogsTable tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef !important;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #495057;
}

#requestLogsTable tbody tr:hover {
    background-color: #f8f9fa;
}

/* Center the Actions column header */
#requestLogsTable thead th:last-child {
    text-align: center;
}

/* Ensure Actions button cell is centered */
#requestLogsTable tbody td:last-child {
    text-align: center;
}

/* View button styling */
#requestLogsTable .view-log-btn {
    white-space: nowrap;
}

/* Badge styling in table cells */
#requestLogsTable .badge {
    font-size: 12px;
    font-weight: 500;
}

/* Code styling for IP addresses */
#requestLogsTable code {
    font-size: 13px;
    padding: 2px 6px;
    background-color: #f8f9fa;
    border-radius: 4px;
}
