| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* General Reset */
- .content {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: Arial, sans-serif;
- display: grid;
- place-items: center;
- background-color: #f4f4f9;
- }
- body {
- background-color: #f4f4f9;
- }
- /* Container */
- .container {
- background: white;
- padding: 20px 30px;
- border-radius: 8px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- width: 100%;
- max-width: 800px;
- display: grid;
- gap: 10px;
- }
- h1, h2 {
- text-align: center;
- color: #333;
- }
- /* Appointment Info */
- .appointment-info {
- display: grid;
- gap: 5px;
- font-size: 16px;
- color: #555;
- }
- .appointment-info p {
- line-height: 1.6;
- }
- /* Table Styling */
- .table-wrapper {
- overflow-x: auto;
- }
- table {
- width: 100%;
- border-collapse: collapse;
- text-align: left;
- }
- th, td {
- padding: 12px;
- border: 1px solid #ddd;
- }
- th {
- background-color: #6c63ff;
- color: white;
- font-weight: normal;
- }
- tr:nth-child(even) {
- background-color: #f9f9f9;
- }
- tr:hover {
- background-color: #f1f1f1;
- }
- /* 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: 10px;
- }
- th, td {
- padding: 8px;
- }
- th {
- font-size: 0.9rem;
- }
- }
|