| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- body {
- font-family: 'Arial', sans-serif;
- background-color: #f4f4f9;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- }
- .container {
- width: 90%;
- max-width: 1200px;
- background-color: #ffffff;
- padding: 20px;
- border-radius: 10px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- overflow-x: auto; /* Ensure content is scrollable on smaller screens */
- }
- h2 {
- text-align: center;
- color: #333333;
- margin-bottom: 20px;
- }
- table {
- width: 100%;
- border-collapse: collapse;
- margin: 20px 0;
- font-size: 16px;
- color: #333333;
- }
- th, td {
- text-align: left;
- padding: 12px;
- border-bottom: 1px solid #dddddd;
- word-wrap: break-word; /* Prevent text from overflowing */
- }
- th {
- background-color: #0078d7;
- color: white;
- }
- tr:hover {
- background-color: #f1f1f1;
- }
- .time-span {
- font-weight: bold;
- color: #0078d7;
- }
- /* Responsive adjustments */
- @media (max-width: 768px) {
- body {
- height: auto;
- padding: 20px;
- }
- h2 {
- font-size: 1.5rem;
- }
- table {
- font-size: 14px;
- }
- th, td {
- padding: 10px;
- }
- }
- @media (max-width: 480px) {
- table {
- font-size: 12px;
- }
- th, td {
- padding: 8px;
- }
- th {
- font-size: 0.9rem;
- }
- }
- /* Ensure table stays scrollable on smaller screens */
- .container {
- overflow-x: auto;
- }
|