diff --git a/index.html b/index.html index b4a3494..6189ebb 100644 --- a/index.html +++ b/index.html @@ -70,7 +70,7 @@ .tab-btn.active { background: var(--accent); color: var(--bg); box-shadow: 0 2px 12px var(--accent-glow-strong); } .tab-panel { display: none; } .tab-panel.active { display: block; animation: fadeIn 0.3s ease; } - .table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); width: 100%; } + .table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); } table { width: 100%; border-collapse: collapse; font-size: 13px; } thead { background: var(--bg-elevated); position: sticky; top: 0; z-index: 2; } th { padding: 12px 14px; text-align: left; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--fg-muted); border-bottom: 2px solid var(--border); white-space: nowrap; } @@ -83,7 +83,7 @@ .empty-cell { color: var(--fg-dim); font-style: italic; } /* Date input styling */ - .date-input { background: var(--bg-input); border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; color: var(--fg); font-family: 'DM Sans', sans-serif; font-size: 12px; outline: none; transition: border-color 0.25s; width: 120px; } + .date-input { background: var(--bg-input); border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; color: var(--fg); font-family: 'DM Sans', sans-serif; font-size: 12px; outline: none; transition: border-color 0.25s, box-shadow 0.25s; width: 100px; } .date-input:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-glow); } .date-input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; } .date-input::-webkit-calendar-picker-indicator:hover { opacity: 1; } @@ -91,7 +91,7 @@ /* Update button styling */ .btn-update { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 6px; border: none; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.25s; background: linear-gradient(135deg, var(--accent), var(--accent-dim)); color: var(--bg); } .btn-update:hover { transform: translateY(-1px); box-shadow: 0 2px 8px var(--accent-glow-strong); } - .btn-update:disabled { opacity: 0.5; cursor: not-allowed; transform: none; } + .btn-update:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; } .btn-update .spinner { width: 12px; height: 12px; border-width: 2px; } .btn-update i { font-size: 10px; } @@ -152,8 +152,8 @@