| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- body {
- font-family: 'Arial', sans-serif;
- background-color: #f4f4f9;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- 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;
- }
|