Files
Magent/frontend/app/globals.css

1592 lines
27 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=JetBrains+Mono:wght@400;600&display=swap');
:root {
color-scheme: light;
--ink: #0f1117;
--ink-muted: #3f4656;
--paper: #f0f4ff;
--paper-strong: #ffffff;
--accent: #ff6b2b;
--accent-2: #1c6bff;
--accent-3: #11d6c6;
--border: rgba(15, 17, 23, 0.12);
--shadow: rgba(15, 17, 23, 0.18);
--glow: 0 0 18px rgba(28, 107, 255, 0.25);
--input-bg: rgba(15, 17, 23, 0.04);
--input-ink: var(--ink);
--error-bg: rgba(255, 107, 43, 0.12);
--error-ink: #6b2c17;
}
[data-theme='dark'] {
color-scheme: dark;
--ink: #e9ecf5;
--ink-muted: #9aa3b8;
--paper: #0b0f18;
--paper-strong: #111827;
--accent: #ff6b2b;
--accent-2: #3b82f6;
--accent-3: #22f6e3;
--border: rgba(255, 255, 255, 0.08);
--shadow: rgba(0, 0, 0, 0.6);
--glow: 0 0 22px rgba(59, 130, 246, 0.45);
--input-bg: rgba(255, 255, 255, 0.08);
--input-ink: var(--ink);
--error-bg: rgba(255, 107, 43, 0.18);
--error-ink: #ffd3bf;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Space Grotesk", "Segoe UI", sans-serif;
background: radial-gradient(circle at top, rgba(17, 33, 74, 0.9) 0%, rgba(8, 12, 22, 1) 55%, #05070d 100%);
color: var(--ink);
min-height: 100vh;
transition: background 0.4s ease, color 0.4s ease;
}
[data-theme='light'] body {
background: radial-gradient(circle at top, #f7faff 0%, #eef2ff 45%, #e3edff 100%);
}
.page {
max-width: 1100px;
margin: 0 auto;
padding: 40px 24px 80px;
display: grid;
gap: 32px;
}
.header {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: auto auto;
align-items: center;
gap: 12px 16px;
}
.header-left {
grid-column: 1 / 2;
grid-row: 1 / 2;
display: inline-flex;
align-items: center;
gap: 14px;
}
.brand-link {
display: inline-flex;
align-items: center;
gap: 14px;
color: inherit;
text-decoration: none;
}
.brand-link:hover .brand {
color: var(--ink);
}
.brand-stack {
display: grid;
gap: 4px;
}
.header-right {
grid-column: 2 / 3;
grid-row: 1 / 2;
display: inline-flex;
align-items: center;
justify-content: flex-end;
gap: 12px;
}
.header-nav {
grid-column: 1 / -1;
grid-row: 2 / 3;
display: flex;
justify-content: flex-start;
}
.brand {
font-size: 32px;
letter-spacing: 0.02em;
font-weight: 700;
text-transform: uppercase;
}
.tagline {
color: var(--ink-muted);
font-size: 16px;
}
.header-actions {
display: flex;
gap: 16px;
font-size: 14px;
align-items: center;
justify-content: flex-end;
flex-wrap: wrap;
width: 100%;
}
.header-actions a {
color: var(--ink);
text-decoration: none;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
backdrop-filter: blur(8px);
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
}
.header-actions .header-link {
color: var(--ink);
text-decoration: none;
padding: 6px 12px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
backdrop-filter: blur(8px);
font-size: 14px;
box-shadow: none;
display: inline-flex;
align-items: center;
justify-content: center;
text-align: center;
}
.header-actions .header-cta {
background: linear-gradient(120deg, rgba(255, 107, 43, 0.95), rgba(255, 168, 75, 0.95));
color: #151515;
border: 1px solid rgba(255, 140, 60, 0.7);
box-shadow: 0 12px 24px rgba(255, 107, 43, 0.35);
font-weight: 700;
}
.header-actions .header-cta--left {
margin-right: auto;
}
.signed-in {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--ink-muted);
padding: 6px 10px;
border-radius: 999px;
border: 1px dashed var(--border);
background: transparent;
cursor: pointer;
}
.signed-in-menu {
position: relative;
display: inline-flex;
align-items: center;
}
.signed-in-dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
min-width: 180px;
background: rgba(14, 20, 32, 0.95);
border: 1px solid var(--border);
border-radius: 12px;
padding: 8px;
box-shadow: 0 12px 26px var(--shadow);
z-index: 20;
}
.signed-in-dropdown a {
display: block;
padding: 8px 12px;
border-radius: 10px;
color: var(--ink);
text-decoration: none;
text-align: center;
}
.signed-in-dropdown a:hover {
background: rgba(255, 255, 255, 0.08);
}
.theme-toggle {
width: 40px;
height: 40px;
padding: 0;
border-radius: 50%;
background: linear-gradient(120deg, rgba(28, 107, 255, 0.2), rgba(34, 246, 227, 0.2));
border: 1px solid var(--border);
color: var(--ink);
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: var(--glow);
}
.theme-toggle svg {
width: 20px;
height: 20px;
fill: none;
stroke: currentColor;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round;
}
.card {
background: var(--paper-strong);
border-radius: 24px;
padding: 32px;
box-shadow: 0 18px 40px var(--shadow);
display: grid;
gap: 24px;
animation: rise 0.5s ease-out;
border: 1px solid var(--border);
}
.layout-grid {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
gap: 28px;
align-items: start;
}
.side-panel {
position: sticky;
top: 24px;
align-self: start;
}
.find-panel {
display: grid;
gap: 20px;
}
.find-header {
display: grid;
gap: 8px;
}
.find-controls {
display: grid;
gap: 16px;
}
.centerpiece {
padding: 8px 0 4px;
}
.centerpiece .recent-grid button {
padding: 14px 18px;
border-radius: 18px;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 18px;
}
.lede {
font-size: 18px;
color: var(--ink-muted);
}
.search {
display: grid;
grid-template-columns: 1fr auto;
gap: 14px;
}
.search-row button {
align-self: stretch;
}
input {
padding: 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
font-size: 16px;
background: var(--input-bg);
color: var(--input-ink);
}
input::placeholder {
color: var(--ink-muted);
}
select {
padding: 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
font-size: 16px;
background: var(--input-bg);
color: var(--input-ink);
}
select option {
background: var(--paper-strong);
color: var(--ink);
}
textarea {
padding: 14px 16px;
border-radius: 16px;
border: 1px solid var(--border);
font-size: 16px;
background: var(--input-bg);
color: var(--input-ink);
font-family: inherit;
resize: vertical;
}
button {
padding: 12px 18px;
border-radius: 999px;
border: none;
background: linear-gradient(120deg, var(--accent), var(--accent-2));
color: #fff;
font-size: 15px;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
box-shadow: var(--glow);
text-align: center;
}
button span {
font-size: 12px;
text-transform: uppercase;
opacity: 0.8;
text-align: center;
}
.filters {
display: grid;
gap: 12px;
}
.filters-compact {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
align-items: start;
padding: 12px;
border-radius: 18px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.04);
}
.filter {
display: grid;
gap: 8px;
font-size: 14px;
color: var(--ink-muted);
}
.pill-group {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill-group button {
background: rgba(28, 107, 255, 0.15);
color: var(--ink);
padding: 8px 14px;
font-size: 13px;
}
.recent-grid {
display: grid;
gap: 10px;
}
.recent-grid button {
justify-content: center;
background: rgba(255, 255, 255, 0.08);
color: var(--ink);
border: 1px solid var(--border);
}
.recent-card {
display: flex;
align-items: center;
gap: 12px;
text-align: left;
}
.recent-poster {
width: 46px;
height: 68px;
border-radius: 10px;
object-fit: cover;
border: 1px solid var(--border);
box-shadow: 0 8px 18px var(--shadow);
flex-shrink: 0;
}
.recent-info {
display: grid;
gap: 4px;
}
.recent-title {
font-weight: 600;
}
.recent-meta {
color: var(--ink-muted);
font-size: 13px;
}
.request-header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 16px;
}
.request-header-main {
display: flex;
align-items: center;
gap: 16px;
}
.request-poster {
width: 90px;
height: 135px;
border-radius: 14px;
object-fit: cover;
border: 1px solid var(--border);
box-shadow: 0 12px 26px var(--shadow);
}
.brand-preview {
margin-top: 12px;
max-width: 300px;
max-height: 300px;
width: 100%;
height: auto;
border-radius: 16px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 10px 24px var(--shadow);
}
.brand-logo {
display: block;
max-width: 100%;
height: auto;
object-fit: contain;
}
.brand-logo--header {
width: 100px;
height: 100px;
border-radius: 0;
border: none;
background: transparent;
box-shadow: none;
}
.brand-logo--login {
width: 180px;
height: 180px;
margin: 40px auto 16px;
border-radius: 0;
border: none;
background: transparent;
box-shadow: none;
}
.meta {
color: var(--ink-muted);
margin-top: 4px;
}
.state {
display: grid;
gap: 6px;
padding: 12px 16px;
background: rgba(255, 255, 255, 0.08);
border-radius: 16px;
}
.status-box {
background: rgba(11, 15, 24, 0.7);
border-radius: 20px;
padding: 20px;
display: grid;
gap: 16px;
border: 1px solid var(--border);
box-shadow: var(--glow);
}
.status-box h2 {
font-size: 18px;
}
.status-box p {
color: var(--ink-muted);
}
.status-text {
font-size: 20px;
color: var(--ink);
font-weight: 600;
}
.timeline {
display: grid;
gap: 20px;
position: relative;
padding-left: 20px;
}
.timeline::before {
content: "";
position: absolute;
left: 10px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--accent-2), transparent);
}
.timeline-item {
display: grid;
grid-template-columns: 20px 1fr;
gap: 12px;
}
.timeline-marker {
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--accent-3);
box-shadow: 0 0 10px rgba(34, 246, 227, 0.6);
margin-top: 6px;
}
.timeline-card {
background: rgba(255, 255, 255, 0.06);
border-radius: 16px;
padding: 16px;
display: grid;
gap: 12px;
border: 1px solid var(--border);
}
.timeline-card pre {
background: rgba(255, 255, 255, 0.08);
padding: 12px;
border-radius: 12px;
overflow-x: auto;
font-size: 12px;
font-family: "JetBrains Mono", "Consolas", monospace;
}
.timeline-sublist {
display: grid;
gap: 8px;
}
.timeline-sublist ul {
list-style: none;
display: grid;
gap: 6px;
}
.timeline-sublist li {
display: flex;
justify-content: space-between;
gap: 12px;
font-size: 14px;
color: var(--ink-muted);
}
.timeline-title {
display: flex;
justify-content: space-between;
align-items: center;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.08em;
}
.summary {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.summary-card {
background: rgba(255, 255, 255, 0.08);
border-radius: 18px;
padding: 18px;
display: grid;
gap: 10px;
border: 1px solid var(--border);
}
.user-card {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
}
.user-actions {
display: grid;
gap: 8px;
justify-items: end;
}
.toggle {
display: inline-flex;
gap: 8px;
align-items: center;
font-size: 13px;
color: var(--ink);
}
.toggle input[type='checkbox'] {
width: 16px;
height: 16px;
}
.summary-card ul {
list-style: disc;
padding-left: 18px;
color: var(--ink-muted);
}
.summary-card p {
color: var(--ink-muted);
}
.summary-card .helper {
font-size: 13px;
line-height: 1.4;
color: #6a5b4c;
}
.details-toggle {
display: flex;
justify-content: flex-end;
}
.details-toggle button {
background: rgba(255, 255, 255, 0.08);
color: var(--ink);
border: 1px solid var(--border);
}
.actions {
display: grid;
gap: 12px;
}
.action-grid {
display: grid;
gap: 10px;
}
.action-message {
padding: 10px 14px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.08);
color: var(--ink-muted);
font-size: 14px;
}
.action-grid button {
background: linear-gradient(120deg, rgba(59, 130, 246, 0.8), rgba(34, 246, 227, 0.7));
}
.history {
display: grid;
gap: 12px;
}
.history-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.history-grid ul {
list-style: none;
display: grid;
gap: 8px;
color: var(--ink-muted);
}
.history-grid li {
display: grid;
gap: 4px;
}
.history-grid li span:last-child {
font-size: 13px;
color: #6a5b4c;
}
.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(27, 28, 30, 0.45);
display: grid;
place-items: center;
z-index: 40;
padding: 24px;
}
.modal-card {
background: var(--paper-strong);
border-radius: 20px;
padding: 24px;
box-shadow: 0 20px 45px var(--shadow);
display: grid;
gap: 12px;
max-width: 420px;
width: 100%;
}
.modal-card button {
justify-self: start;
background: linear-gradient(120deg, var(--accent), var(--accent-2));
}
.auth-card {
max-width: 520px;
margin: 0 auto;
}
.auth-form {
display: grid;
gap: 16px;
}
.auth-actions {
display: grid;
gap: 10px;
}
.ghost-button {
background: rgba(255, 255, 255, 0.08);
color: var(--ink);
border: 1px solid var(--border);
box-shadow: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 18px;
border-radius: 999px;
font-size: 15px;
text-decoration: none;
text-align: center;
}
.auth-form label {
display: grid;
gap: 8px;
font-size: 14px;
color: var(--ink-muted);
text-align: center;
}
.error-banner {
padding: 10px 14px;
border-radius: 12px;
background: var(--error-bg);
color: var(--error-ink);
font-size: 14px;
border: 1px solid var(--border);
}
.admin-card {
gap: 32px;
}
.admin-shell {
display: grid;
grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
gap: 24px;
align-items: start;
}
.admin-shell-nav {
position: sticky;
top: 24px;
}
.admin-sidebar {
display: grid;
gap: 16px;
padding: 16px;
border-radius: 18px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.06);
}
.admin-sidebar-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--ink-muted);
}
.admin-nav-group {
display: grid;
gap: 8px;
}
.admin-nav-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--ink-muted);
}
.admin-nav-links {
display: grid;
gap: 8px;
}
.admin-nav-links a {
color: var(--ink);
text-decoration: none;
padding: 8px 12px;
border-radius: 12px;
border: 1px solid transparent;
background: rgba(255, 255, 255, 0.04);
font-size: 14px;
}
.admin-nav-links a.is-active {
border-color: rgba(59, 130, 246, 0.4);
background: rgba(59, 130, 246, 0.18);
color: var(--ink);
}
.admin-header {
display: flex;
justify-content: space-between;
gap: 16px;
align-items: center;
flex-wrap: wrap;
}
.admin-form {
display: grid;
gap: 24px;
}
.admin-section {
display: grid;
gap: 12px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.section-subtitle {
color: var(--ink-muted);
font-size: 13px;
margin-top: -6px;
}
.sync-actions {
display: inline-flex;
gap: 10px;
flex-wrap: wrap;
}
.section-header button {
background: rgba(255, 255, 255, 0.08);
color: var(--ink);
}
.admin-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 16px;
}
.admin-grid label {
display: grid;
gap: 8px;
font-size: 14px;
color: var(--ink-muted);
text-align: center;
}
.admin-grid label[data-helper]::after {
content: attr(data-helper);
font-size: 12px;
color: var(--ink-muted);
line-height: 1.4;
}
.label-row {
display: flex;
justify-content: space-between;
gap: 12px;
text-align: center;
}
.status-banner {
padding: 12px 16px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.08);
color: var(--ink);
font-size: 14px;
border: 1px solid var(--border);
}
.recent-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.recent-filter {
display: inline-flex;
gap: 8px;
align-items: center;
font-size: 13px;
color: var(--ink-muted);
}
.recent-filter select {
padding: 8px 12px;
font-size: 13px;
}
.admin-actions {
display: flex;
justify-content: flex-end;
}
.settings-nav {
display: flex;
gap: 16px;
flex-wrap: wrap;
padding: 12px 16px;
border-radius: 16px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.06);
}
.settings-group {
display: grid;
gap: 6px;
min-width: 180px;
}
.settings-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--ink-muted);
}
.settings-links {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.settings-links a {
color: var(--ink);
text-decoration: none;
padding: 6px 12px;
border-radius: 999px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.08);
font-size: 13px;
}
.log-actions {
display: inline-flex;
gap: 12px;
align-items: center;
}
.log-viewer {
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
border-radius: 12px;
padding: 16px;
max-height: 320px;
overflow: auto;
font-size: 12px;
line-height: 1.4;
color: var(--ink);
}
.cache-table {
display: grid;
gap: 8px;
}
.cache-row {
display: grid;
grid-template-columns: 90px minmax(0, 1.6fr) 120px 90px 180px;
gap: 12px;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.06);
font-size: 13px;
color: var(--ink);
}
.cache-row span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cache-head {
background: rgba(255, 255, 255, 0.12);
font-weight: 600;
text-transform: uppercase;
font-size: 11px;
letter-spacing: 0.08em;
}
.maintenance-grid {
display: grid;
gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.schedule-grid {
display: grid;
gap: 12px;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.schedule-card {
background: rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 16px;
border: 1px solid var(--border);
display: grid;
gap: 6px;
}
.schedule-card h3 {
font-size: 16px;
}
.schedule-card p {
color: var(--ink-muted);
font-size: 14px;
}
.danger-button {
background: linear-gradient(120deg, #ff3b30, #ff8a3d);
color: #fff;
}
.sync-progress {
display: grid;
gap: 8px;
padding: 12px 16px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
}
.sync-meta {
display: flex;
justify-content: space-between;
gap: 12px;
font-size: 13px;
color: var(--ink-muted);
}
.progress {
position: relative;
height: 10px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.08);
overflow: hidden;
border: 1px solid var(--border);
}
.progress-fill {
height: 100%;
background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
transition: width 0.3s ease;
}
.progress-indeterminate .progress-fill {
position: absolute;
animation: progress-indeterminate 1.6s ease-in-out infinite;
}
.progress-complete .progress-fill {
animation: none;
}
.system-status {
border-radius: 16px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.08);
padding: 16px;
margin-bottom: 16px;
}
.system-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
}
.system-header h2 {
font-size: 18px;
}
.system-pill {
padding: 6px 12px;
border-radius: 999px;
font-size: 12px;
letter-spacing: 0.02em;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
color: var(--ink-muted);
}
.system-pill-up {
color: #0b3d2e;
background: rgba(61, 220, 151, 0.2);
border-color: rgba(61, 220, 151, 0.4);
}
[data-theme='dark'] .system-pill-up {
color: #e9fff6;
background: rgba(61, 220, 151, 0.28);
border-color: rgba(61, 220, 151, 0.5);
}
.system-pill-down {
color: #4a0c0c;
background: rgba(255, 59, 48, 0.2);
border-color: rgba(255, 59, 48, 0.4);
}
.system-pill-degraded {
color: #3e2b00;
background: rgba(255, 200, 87, 0.22);
border-color: rgba(255, 200, 87, 0.4);
}
.system-list {
display: grid;
gap: 8px;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.system-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 12px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--border);
font-size: 13px;
}
.system-dot {
width: 10px;
height: 10px;
border-radius: 999px;
background: #6b6b6b;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.system-up .system-dot {
background: #3ddc97;
box-shadow: 0 0 10px rgba(61, 220, 151, 0.6);
}
.system-down .system-dot {
background: #ff3b30;
box-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
}
.system-degraded .system-dot,
.system-not_configured .system-dot {
background: #ffc857;
box-shadow: 0 0 10px rgba(255, 200, 87, 0.5);
}
.system-name {
font-weight: 600;
}
.system-state {
margin-left: auto;
color: var(--ink-muted);
}
.pipeline-map {
border-radius: 16px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.06);
padding: 16px;
margin-bottom: 16px;
}
.pipeline-map h2 {
font-size: 18px;
margin-bottom: 12px;
}
.pipeline-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 10px;
}
.pipeline-step {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
border-radius: 999px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.04);
color: var(--ink-muted);
font-size: 13px;
}
.pipeline-dot {
width: 10px;
height: 10px;
border-radius: 999px;
background: #6b6b6b;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
.pipeline-step.is-complete {
color: var(--ink);
}
.pipeline-step.is-complete .pipeline-dot {
background: #3ddc97;
box-shadow: 0 0 10px rgba(61, 220, 151, 0.4);
}
.pipeline-step.is-active {
color: var(--ink);
border-color: rgba(61, 220, 151, 0.5);
background: rgba(61, 220, 151, 0.12);
}
.pipeline-step.is-active .pipeline-dot {
background: #3ddc97;
box-shadow: 0 0 14px rgba(61, 220, 151, 0.8);
}
.pipeline-hint {
margin-top: 10px;
color: var(--ink-muted);
font-size: 13px;
}
.timeline-item.is-active .timeline-marker {
background: #3ddc97;
box-shadow: 0 0 12px rgba(61, 220, 151, 0.8);
}
@keyframes progress-indeterminate {
0% {
transform: translateX(-50%);
}
50% {
transform: translateX(120%);
}
100% {
transform: translateX(-50%);
}
}
@keyframes rise {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 720px) {
.header {
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;
align-items: flex-start;
}
.header-right {
grid-column: 1 / -1;
justify-content: flex-start;
}
.header-nav {
justify-content: flex-start;
}
.summary {
grid-template-columns: 1fr;
}
.history-grid {
grid-template-columns: 1fr;
}
.layout-grid {
grid-template-columns: 1fr;
}
.side-panel {
position: static;
}
.admin-shell {
grid-template-columns: 1fr;
}
.admin-shell-nav {
position: static;
}
.search {
grid-template-columns: 1fr;
}
.card {
padding: 24px;
}
.cache-row {
grid-template-columns: 1fr;
}
}
/* Loading spinner */
.loading-center {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 28px 0;
}
.spinner {
width: 44px;
height: 44px;
border-radius: 50%;
border: 4px solid rgba(255, 255, 255, 0.12);
border-top-color: var(--accent-2);
box-shadow: 0 6px 18px rgba(28, 107, 255, 0.12);
animation: spin 0.9s linear infinite;
}
.loading-text {
font-size: 16px;
color: var(--ink-muted);
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
/* How it works */
.how-page {
display: grid;
gap: 28px;
}
.how-hero {
display: grid;
gap: 10px;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 12px;
color: var(--ink-muted);
}
.how-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
}
.how-card {
background: var(--paper-strong);
border: 1px solid var(--border);
padding: 16px;
border-radius: 16px;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
display: grid;
gap: 8px;
}
.how-title {
color: var(--accent-3);
font-weight: 600;
}
.how-flow {
display: grid;
gap: 12px;
}
.how-steps {
list-style: none;
display: grid;
gap: 10px;
padding: 0;
}
.how-steps li {
padding: 12px 14px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid var(--border);
}
.how-step-grid {
display: grid;
gap: 16px;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.how-step-card {
border-radius: 18px;
padding: 18px;
border: 1px solid var(--border);
background: rgba(255, 255, 255, 0.06);
display: grid;
gap: 10px;
position: relative;
overflow: hidden;
}
.how-step-card::before {
content: '';
position: absolute;
inset: 0;
opacity: 0.35;
pointer-events: none;
}
.step-jellyseerr::before {
background: linear-gradient(135deg, rgba(255, 187, 92, 0.35), transparent 60%);
}
.step-arr::before {
background: linear-gradient(135deg, rgba(94, 204, 255, 0.35), transparent 60%);
}
.step-prowlarr::before {
background: linear-gradient(135deg, rgba(120, 255, 189, 0.35), transparent 60%);
}
.step-qbit::before {
background: linear-gradient(135deg, rgba(255, 133, 200, 0.35), transparent 60%);
}
.step-jellyfin::before {
background: linear-gradient(135deg, rgba(170, 140, 255, 0.35), transparent 60%);
}
.step-badge {
width: 38px;
height: 38px;
border-radius: 50%;
display: grid;
place-items: center;
font-weight: 700;
background: rgba(255, 255, 255, 0.12);
border: 1px solid var(--border);
color: var(--ink);
}
.step-note {
color: var(--ink-muted);
font-size: 14px;
}
.step-fix-title {
font-size: 13px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-muted);
}
.step-fix-list {
list-style: none;
display: grid;
gap: 6px;
padding: 0;
margin: 0;
}
.step-fix-list li {
padding: 8px 10px;
border-radius: 10px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid var(--border);
font-size: 13px;
}
.how-callout {
border-left: 4px solid var(--accent);
padding: 16px 18px;
background: rgba(255, 255, 255, 0.06);
border-radius: 12px;
display: grid;
gap: 8px;
}