diff --git a/frontend/assets/styles.css b/frontend/assets/styles.css index b533644..965e799 100644 --- a/frontend/assets/styles.css +++ b/frontend/assets/styles.css @@ -533,3 +533,46 @@ input[type="date"]::-webkit-calendar-picker-indicator:hover{ background-repeat: no-repeat; background-position: center; } + +/* Table styles */ +.table { + width: 100%; + border-collapse: collapse; + background: var(--surface); + border-radius: 8px; + overflow: hidden; +} + +.table thead { + background: var(--border); +} + +.table th { + padding: 12px; + text-align: left; + font-weight: 600; + color: var(--text); + border-bottom: 2px solid var(--border); +} + +.table td { + padding: 12px; + border-bottom: 1px solid var(--border); + color: var(--text); +} + +.table tbody tr:hover { + background: var(--hover); +} + +.table tbody tr:last-child td { + border-bottom: none; +} + +@media(max-width: 768px) { + .table th, + .table td { + padding: 8px; + font-size: 14px; + } +} diff --git a/frontend/index.html b/frontend/index.html index 372af0e..4394b2b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -52,10 +52,23 @@