/* parsers.css */
.table-card .request-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
}

.table-card .request-btn:hover {
    background: #e0e0e0;
}

/* === Parser Copy Styles (Matches API Key Copy Button) === */
.parser-key-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
}

.parser-key {
    flex: 1;
    color: #333;
    font-size: 14px;
    word-break: break-all;
}

.copy-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #007bff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.copy-button:hover {
    color: #0056b3;
}

/* ✅ Dark Mode Compatibility */
body.ocean-dark-mode .parser-key {
    color: #e2e8f0;
}

body.ocean-dark-mode .copy-button {
    color: #3b82f6;
}

body.ocean-dark-mode .copy-button:hover {
    color: #2563eb;
}
