/* Thiết lập cơ bản */ body { font-family: Arial, sans-serif; background-color: #222; color: #fff; text-align: center; margin: 0; padding: 0; } /* Bọc bảng trong div để hỗ trợ cuộn ngang trên mobile */ .table-container { width: 100%; overflow-x: auto; /* Cuộn ngang nếu bảng quá rộng */ } /* Bảng */ table { width: 100%; margin: 20px auto; border-collapse: collapse; background: #333; min-width: 600px; /* Đảm bảo bảng không quá nhỏ trên mobile */ } /* Ô tiêu đề và ô dữ liệu */ th, td { border: 1px solid #666; padding: 10px; text-align: left; word-wrap: break-word; /* Đảm bảo nội dung không bị tràn */ } /* Tiêu đề bảng */ th { background: #444; } /* Màu xen kẽ cho các hàng */ tr:nth-child(even) { background: #555; } /* Nút bấm */ .show-more, .delete-btn, .copy-btn { cursor: pointer; padding: 8px 12px; border-radius: 5px; margin: 3px; font-size: 14px; display: inline-block; text-align: center; } .show-more { background-color: #008CBA; color: white; border: none; } .copy-btn { background-color: #4CAF50; color: white; border: none; } .delete-btn { background-color: #f44336; color: white; border: none; } /* Phân trang */ .pagination { margin-top: 20px; } .pagination a { padding: 10px; margin: 5px; text-decoration: none; color: white; background: #007BFF; border-radius: 5px; } .pagination a.active { background: #0056b3; } /* Popup */ .popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); justify-content: center; align-items: center; } /* Nội dung popup */ .popup-content { background: #fff; color: #000; padding: 20px; border-radius: 5px; width: 90%; max-width: 600px; text-align: left; position: relative; display: flex; flex-direction: column; max-height: 80vh; /* Giới hạn chiều cao */ } /* Khu vực nội dung có thể cuộn */ .popup-body { overflow-y: auto; /* Cho phép cuộn nội dung */ max-height: 70vh; /* Giới hạn chiều cao để có thể cuộn */ padding: 10px; background: #f4f4f4; border-radius: 5px; } /* Định dạng nội dung trong popup */ .popup-content pre { white-space: pre-wrap; word-wrap: break-word; } /* Nút đóng popup */ .close-btn, .copy-popup-btn { position: absolute; top: 10px; padding: 5px 10px; border: none; cursor: pointer; color: white; } .close-btn { right: 10px; background: #f44336; } .copy-popup-btn { right: 70px; background: #4CAF50; } /* Responsive: Điều chỉnh bảng trên màn hình nhỏ */ @media (max-width: 768px) { table { min-width: 100%; } th, td { padding: 8px; font-size: 14px; } .show-more, .delete-btn, .copy-btn { padding: 6px 10px; font-size: 12px; } }