:root{color-scheme:dark;--bg: #0f172a;--surface: #1a2744;--surface-alt: #232f4a;--border: #334455;--text: #e2e8f0;--text-secondary: #cbd5e1;--muted: #94a3b8;--accent: #6366f1;--accent-hover: #818cf8;--radius: 12px;--shadow: 0 20px 60px rgb(0 0 0 / 40%);--shadow-sm: 0 4px 12px rgb(0 0 0 / 25%);--field-label-gap-large: .5rem;--field-label-gap-small: calc(var(--field-label-gap-large) / 2)}*{box-sizing:border-box}#root{min-height:100vh;padding:2rem 1.5rem;display:flex;align-items:center;justify-content:center}body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg);color:var(--text);line-height:1.5}.add-entry{width:100%;max-width:528px;padding:2rem;background:var(--surface);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow);overflow:visible}.add-entry__title{margin:0 0 .75rem;font-size:1.5rem;font-weight:700;letter-spacing:-.02em;color:var(--text);text-align:center}.add-entry__card-group{padding:1.5rem;background:var(--surface-alt);border:1px solid var(--border);border-radius:12px;margin-bottom:1.5rem}.add-entry__card-group:first-of-type{margin-top:0}.add-entry__card-group:last-of-type{margin-bottom:0}.add-entry__fields{display:flex;flex-direction:column;gap:2rem}.add-entry__fields--two-column{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.1rem 1.5rem;margin-top:10px}.add-entry__fields--two-column>.add-entry__toggle-row{grid-column:span 2}.add-entry__fields--four-column{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.1rem 1rem;margin-top:10px}.add-entry__fields--four-column .add-entry__field{grid-column:span 1}.add-entry__field--toggle{display:flex;flex-direction:column;justify-content:flex-start;align-items:center;gap:.5rem;text-align:center}.add-entry__field--toggle label{width:100%;text-align:center}.add-entry__field--toggle .add-entry__switch{margin:0;flex-shrink:0;width:2.25rem;height:1.25rem}.add-entry__fields--three-column-full{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 1rem}.add-entry__fields--three-column{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem 1rem;margin-top:10px}.add-entry__fields--three-column .add-entry__toggle-row{grid-column:span 1;padding:0;display:flex;flex-direction:column;justify-content:space-between;align-items:center;gap:.75rem;text-align:center}.add-entry__fields--three-column .add-entry__toggle-row>span{font-size:.8125rem;font-weight:600;color:var(--text-secondary);width:100%;display:block}.add-entry__fields--full-width{display:flex;flex-direction:column;gap:1.1rem}@media(max-width:640px){.add-entry__fields--two-column{grid-template-columns:1fr}}.add-entry__field label{display:block;font-size:.8125rem;font-weight:600;color:var(--text-secondary);margin-bottom:var(--field-label-gap-large)}.add-entry__field--gap-small label{margin-bottom:var(--field-label-gap-small)}.add-entry__field--gap-large label{margin-bottom:var(--field-label-gap-large)}.add-entry__field input[type=text],.add-entry__field input[type=number],.add-entry__field input[type=date],.add-entry__field select,.add-entry__field textarea{width:100%;padding:.6rem .85rem;font-size:.9375rem;border:1px solid var(--border);border-radius:8px;background:#0f172a;color:var(--text);font-family:inherit}.add-entry__field input[type=date]{padding-right:.85rem;overflow:hidden}.add-entry__field select{padding-right:2.5rem;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .5rem center;background-size:1.5rem 1.5rem;background-clip:padding-box;cursor:pointer;padding-left:.85rem;position:relative;z-index:10}.add-entry__field select option{background-color:#1a2744;color:#e2e8f0;padding:.5rem;min-height:1.5rem}.add-entry__field input[type=text]::placeholder,.add-entry__field input[type=number]::placeholder,.add-entry__field textarea::placeholder{color:var(--muted)}.add-entry__field input:focus,.add-entry__field select:focus,.add-entry__field textarea:focus{outline:2px solid rgb(99 102 241 / 40%);outline-offset:1px;border-color:var(--accent);background:#1a2744}.add-entry__field select:focus{background-color:#1a2744;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .5rem center;background-size:1.5rem 1.5rem}.add-entry__helper{margin:.25rem 0 0;font-size:.75rem;color:var(--muted);font-weight:400}.add-entry__toggle-row{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.5rem 0;width:fit-content}.add-entry__toggle-row>span{font-weight:600;font-size:.875rem;color:var(--text)}.add-entry__switch{position:relative;width:2.25rem;height:1.25rem;flex-shrink:0;min-width:2.25rem}.add-entry__switch input{opacity:0;width:0;height:0;position:absolute}.add-entry__switch-slider{position:absolute;cursor:pointer;inset:0;background:#475569;border-radius:999px;transition:background .2s}.add-entry__switch-slider:before{position:absolute;content:"";height:.95rem;width:.95rem;left:.15rem;bottom:.15rem;background:#fff;border-radius:50%;transition:transform .2s;box-shadow:0 1px 2px #0000004d}.add-entry__switch input:checked+.add-entry__switch-slider{background:var(--accent)}.add-entry__switch input:checked+.add-entry__switch-slider:before{transform:translate(1rem)}.add-entry__expand{margin:1.25rem 0 1rem;padding-top:1rem;border-top:1px solid var(--border)}.add-entry__expand-btn{display:inline-flex;align-items:center;gap:.35rem;padding:.45rem 0;font-size:.875rem;font-weight:600;color:var(--accent);background:none;border:none;cursor:pointer;transition:color .2s}.add-entry__expand-btn:hover{color:var(--accent-hover)}.add-entry__expand-icon{display:inline-block;transition:transform .2s;font-size:.65rem}.add-entry__expand-icon--open{transform:rotate(90deg)}.add-entry__actions{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--border);display:flex;gap:.75rem;flex-wrap:wrap}.app-page{width:100%;max-width:100%;display:flex;flex-direction:column;align-items:stretch;gap:1rem}.page-content{width:100%}.page-content--centered{display:flex;justify-content:center;align-items:flex-start}.page-content--left{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;width:100%}.data-table-wrapper{width:100%;overflow:auto;max-height:calc(100vh - 16rem);border:1px solid rgba(148,163,184,.2);border-radius:12px;background:#0c162a;padding-top:8px;scrollbar-width:thin;scrollbar-color:rgba(99,102,241,.45) rgba(15,23,42,.9);isolation:isolate}.data-table__filter-row{display:flex;gap:.5rem;align-items:center;margin-bottom:.75rem}.data-table__filter-label{color:var(--text-secondary);white-space:nowrap}.data-table__filter-input{width:100%;max-width:25rem;padding:.55rem .75rem;border-radius:8px;border:1px solid var(--border);background:#0f172a;color:var(--text)}.data-table__filter-input:focus{outline:2px solid rgb(99 102 241 / 40%);outline-offset:1px;border-color:var(--accent)}.data-table__filter-input-row{background:#0f172af2}.data-table__th-filter{padding:.35rem .85rem}.data-table__column-filter-input{width:100%;box-sizing:border-box;padding:.35rem .6rem;border-radius:8px;border:1px solid var(--border);background:#0f172a;color:var(--text);font-size:.85rem}.data-table-wrapper::-webkit-scrollbar{height:10px;width:10px}.data-table-wrapper::-webkit-scrollbar-track{background:#0f172ae6;border-radius:999px}.data-table-wrapper::-webkit-scrollbar-thumb{background:#6366f173;border-radius:999px}.data-table-wrapper::-webkit-scrollbar-thumb:hover{background:#6366f1a6}.data-table{width:auto;border-collapse:collapse;table-layout:auto;font-size:.9rem}.data-table__th,.data-table__td{border:1px solid rgba(148,163,184,.15);padding:.65rem .85rem;vertical-align:top;white-space:nowrap}.data-table__th{position:sticky;top:-8px;z-index:100!important;text-align:left;font-weight:700;background:#1a2744!important;color:var(--text);box-shadow:0 3px 6px #0006;transform:translateZ(0)}.data-table__th-content{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.data-table__filter-dropdown{position:absolute;top:calc(100% + .5rem);left:0;z-index:20;width:min(22rem,100vw - 2rem);max-height:24rem;padding:.75rem;border:1px solid rgba(148,163,184,.2);border-radius:12px;background:var(--surface);box-shadow:0 18px 40px #00000059}.data-table__filter-dropdown-list{margin-top:.75rem;max-height:12rem;overflow:auto;border-top:1px solid rgba(148,163,184,.15);padding-top:.75rem}.data-table__filter-option{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem;color:var(--text);font-size:.9rem}.data-table__filter-dropdown-actions{display:flex;justify-content:flex-end;gap:.5rem;margin-top:.75rem}.data-table__filter-loading,.data-table__filter-empty,.data-table__filter-error{color:var(--text-secondary);font-size:.85rem}.data-table__column-filter-input{width:100%;padding:.55rem .75rem;border-radius:8px;border:1px solid var(--border);background:#0f172a;color:var(--text);font-size:.9rem}.data-table__column-filter-input:focus{outline:2px solid rgb(99 102 241 / 40%);outline-offset:1px;border-color:var(--accent)}.data-table__filter-icon{display:inline-flex;align-items:center;justify-content:center;width:1.35rem;height:1.35rem;border-radius:999px;background:#6366f11f;color:var(--text);font-size:.8rem}.data-table__footer{display:flex;justify-content:flex-start;padding:1rem 0 0}.data-table__footer .add-entry__btn{margin-top:.5rem}.add-entry__btn{padding:.7rem 1.3rem;font-size:.9375rem;font-weight:600;border-radius:8px;border:none;cursor:pointer;transition:all .2s}.add-entry__btn--primary{background:var(--accent);color:#fff}.add-entry__btn--primary:hover:not(:disabled){background:var(--accent-hover);transform:translateY(-1px);box-shadow:0 4px 12px #6366f14d}.add-entry__btn--primary:disabled{opacity:.55;cursor:not-allowed}.add-entry__btn--ghost{background:transparent;color:var(--muted);border:1px solid var(--border)}.add-entry__btn--ghost:hover:not(:disabled){color:var(--text);border-color:var(--text);background:#e2e8f00d}.add-entry__btn--ghost:disabled{opacity:.55;cursor:not-allowed}.add-entry__error{margin:0 0 1rem;padding:.65rem .85rem;font-size:.875rem;background:#fef2f2;color:#b91c1c;border-radius:8px}.add-entry__success{margin:0 0 1rem;padding:.75rem 1rem;font-size:.875rem;background:#064e3b;color:#86efac;border:1px solid #065f46;border-radius:8px}.csv-uploader{width:100%;max-width:800px;padding:2rem;background:var(--surface);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow)}.csv-uploader h2{margin:0 0 1.5rem;font-size:1.5rem;font-weight:700;text-align:center}.csv-uploader__dropzone{width:100%;margin-bottom:1.5rem}.csv-uploader__dropzone input[type=file]{display:none}.csv-uploader__label{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;min-height:120px;padding:2rem;border:2px dashed var(--border);border-radius:12px;background:var(--surface-alt);cursor:pointer;transition:all .2s}.csv-uploader__label:hover{border-color:var(--accent);background:#6366f10d}.csv-uploader__loading{text-align:center;color:var(--muted);padding:1rem}.csv-uploader__preview{margin:1.5rem 0}.csv-uploader__preview h3{margin:0 0 1rem;font-size:1rem;font-weight:600;color:var(--text-secondary)}.csv-uploader__table{width:100%;border-collapse:collapse;font-size:.85rem;margin-bottom:1rem}.csv-uploader__table th,.csv-uploader__table td{border:1px solid var(--border);padding:.6rem .8rem;text-align:left}.csv-uploader__table th{background:var(--surface-alt);font-weight:600}.csv-uploader__actions{display:flex;justify-content:flex-end;gap:.75rem;margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border)}.csv-uploader__help{margin-top:2rem;padding:1.5rem;background:var(--surface-alt);border-radius:12px}.csv-uploader__help h4{margin:0 0 .75rem;font-size:.95rem;font-weight:600}.csv-uploader__help ol{margin:.75rem 0;padding-left:1.5rem;font-size:.85rem;color:var(--text-secondary);display:grid;grid-template-columns:repeat(2,1fr);gap:.25rem 1rem}
