@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #070a0f;
  --bg2:      #0d1117;
  --bg3:      #111827;
  --bg4:      #1a2235;
  --border:   rgba(255,255,255,.07);
  --border2:  rgba(255,255,255,.12);
  --text:     #f0f6fc;
  --text2:    #7d8fa9;
  --text3:    #4a5568;
  --accent:   #6366f1;
  --accent2:  #818cf8;
  --green:    #10b981;
  --red:      #ef4444;
  --yellow:   #f59e0b;
  --purple:   #a855f7;
  --cyan:     #06b6d4;
  --glow:     rgba(99,102,241,.25);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(168,85,247,.06) 0%, transparent 50%);
}

.screen { display: none; height: 100vh; }
.screen.active { display: flex; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* ===== LOGIN ===== */
#login-screen {
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(99,102,241,.15) 0%, transparent 70%),
    var(--bg);
}

.login-box {
  background: rgba(13,17,23,.8);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 48px 40px;
  width: 380px;
  box-shadow: 0 0 80px rgba(99,102,241,.15), 0 32px 64px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.8), rgba(168,85,247,.6), transparent);
}

.login-logo {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(99,102,241,.4);
}

.login-box h1 { text-align: center; font-size: 22px; font-weight: 700; letter-spacing: -.5px; }
.login-sub { text-align: center; color: var(--text2); font-size: 13px; margin-bottom: 32px; margin-top: 6px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 500; color: var(--text2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: rgba(99,102,241,.08);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--bg3); }

.btn-primary {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(99,102,241,.35);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(99,102,241,.5); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.error-msg { color: var(--red); font-size: 13px; margin-top: 12px; text-align: center; padding: 10px; background: rgba(239,68,68,.08); border-radius: 8px; border: 1px solid rgba(239,68,68,.2); }
.hint { color: var(--text3); font-size: 11px; font-weight: 400; }

/* ===== APP LAYOUT ===== */
#app-screen { flex-direction: row; }

.sidebar {
  width: 230px;
  background: rgba(13,17,23,.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}
.sidebar::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 40%);
  opacity: .3;
}

.sidebar-header {
  padding: 22px 18px 18px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
  box-shadow: 0 0 15px rgba(99,102,241,.3);
  flex-shrink: 0;
}
.sidebar-header span { font-size: 15px; font-weight: 700; letter-spacing: -.3px; }
.sidebar-header small { display: block; font-size: 11px; color: var(--text2); font-weight: 400; }

.sidebar-section { padding: 16px 10px 4px; }
.sidebar-section-label { font-size: 10px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; padding: 0 8px; margin-bottom: 4px; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all .15s;
  position: relative;
  margin-bottom: 1px;
}
.nav-item:hover { background: rgba(255,255,255,.05); color: var(--text); }
.nav-item.active {
  background: rgba(99,102,241,.15);
  color: var(--accent2);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 60%;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.nav-item .nav-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  background: rgba(255,255,255,.04);
  flex-shrink: 0;
  transition: all .15s;
}
.nav-item.active .nav-icon { background: rgba(99,102,241,.2); color: var(--accent2); }
.nav-item:hover .nav-icon { background: rgba(255,255,255,.08); }

.sidebar-footer {
  margin-top: auto;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.server-info { display: flex; align-items: center; gap: 8px; }
.server-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.server-name { font-size: 12px; color: var(--text2); font-weight: 500; }

.btn-logout {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.15);
  color: var(--red);
  border-radius: 8px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 13px;
}
.btn-logout:hover { background: rgba(239,68,68,.2); border-color: var(--red); }

/* ===== CONTENT ===== */
.content { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }

.topbar {
  padding: 0 24px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,10,15,.8);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.topbar h2 { font-size: 16px; font-weight: 600; letter-spacing: -.3px; }
.topbar-right { display: flex; gap: 8px; align-items: center; }

.badge {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text2);
  display: flex; align-items: center; gap: 5px;
}
.badge-green { border-color: rgba(16,185,129,.3); color: var(--green); background: rgba(16,185,129,.08); }
.badge-red { border-color: rgba(239,68,68,.3); color: var(--red); background: rgba(239,68,68,.08); }
.badge-yellow { border-color: rgba(245,158,11,.3); color: var(--yellow); background: rgba(245,158,11,.08); }

/* ===== PAGES ===== */
.page { display: none; padding: 24px; overflow-y: auto; flex: 1; height: calc(100vh - 56px); }
.page.active { display: block; }

/* ===== CARDS ===== */
.card {
  background: rgba(13,17,23,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.card:hover { border-color: var(--border2); }

.card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.02);
}
.card-header h3 { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: var(--text); }
.card-header h3 i { color: var(--accent2); }

/* ===== BUTTONS ===== */
.btn-sm {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  color: var(--text2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif;
}
.btn-sm:hover { background: rgba(99,102,241,.1); border-color: var(--accent); color: var(--accent2); }

.btn-green { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: var(--green); border-radius: 7px; padding: 5px 10px; font-size: 12px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.btn-green:hover { background: rgba(16,185,129,.2); }
.btn-red { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: var(--red); border-radius: 7px; padding: 5px 10px; font-size: 12px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.btn-red:hover { background: rgba(239,68,68,.2); }
.btn-yellow { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); color: var(--yellow); border-radius: 7px; padding: 5px 10px; font-size: 12px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.btn-yellow:hover { background: rgba(245,158,11,.2); }
.btn-blue { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25); color: var(--accent2); border-radius: 7px; padding: 5px 10px; font-size: 12px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.btn-blue:hover { background: rgba(99,102,241,.2); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }

.stat-card {
  background: rgba(13,17,23,.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: all .2s;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity .2s;
}
.stat-card:hover { border-color: var(--border2); transform: translateY(-1px); }
.stat-card:hover::before { opacity: 1; }
.stat-card.cpu::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.stat-card.ram::before { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.stat-card.disk::before { background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
.stat-card.net::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }

.stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.stat-icon.cpu { background: rgba(99,102,241,.15); color: var(--accent2); }
.stat-icon.ram { background: rgba(168,85,247,.15); color: var(--purple); }
.stat-icon.disk { background: rgba(245,158,11,.15); color: var(--yellow); }
.stat-icon.net { background: rgba(16,185,129,.15); color: var(--green); }
.stat-value { font-size: 26px; font-weight: 700; letter-spacing: -1px; margin-bottom: 2px; }
.stat-label { font-size: 11px; color: var(--text2); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.stat-bar { height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; margin-top: 12px; }
.stat-fill { height: 100%; border-radius: 2px; transition: width .4s ease; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.detail-card { background: rgba(13,17,23,.7); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.detail-card h3 { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 14px; display: flex; align-items: center; gap: 7px; text-transform: uppercase; letter-spacing: .5px; }
.detail-card h3 i { color: var(--accent2); }
.info-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border: none; }
.info-table td { padding: 8px 4px; }
.info-table td:first-child { color: var(--text2); width: 40%; font-size: 12px; }
.info-table td:last-child { font-weight: 500; }
.disk-item { margin-bottom: 12px; }
.disk-item:last-child { margin-bottom: 0; }
.disk-item-header { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; color: var(--text2); }
.disk-item-header span:last-child { color: var(--text); font-weight: 500; }
.disk-bar-bg { background: rgba(255,255,255,.05); border-radius: 3px; height: 5px; }
.disk-bar-fill { height: 100%; border-radius: 3px; transition: width .4s; }

/* ===== DEPLOY ===== */
.deploy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.deploy-form { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.deploy-tabs { display: flex; gap: 6px; padding: 4px; background: rgba(255,255,255,.04); border-radius: 10px; }
.dtab { flex: 1; padding: 8px; border-radius: 7px; border: none; background: transparent; color: var(--text2); cursor: pointer; font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all .2s; font-family: 'Inter', sans-serif; }
.dtab.active { background: rgba(99,102,241,.2); color: var(--accent2); box-shadow: 0 2px 8px rgba(99,102,241,.2); }
.deploy-log { padding: 16px; font-family: 'Consolas', monospace; font-size: 12px; min-height: 400px; max-height: 600px; background: rgba(0,0,0,.5); overflow-y: auto; color: #e6edf3; line-height: 1.7; }
.deploy-log .log-line { padding: 1px 0; }
input[type="file"] { width: 100%; padding: 10px 12px; background: rgba(255,255,255,.04); border: 1px dashed var(--border2); border-radius: 10px; color: var(--text); font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif; transition: border-color .2s; }
input[type="file"]:hover { border-color: var(--accent); }

/* ===== APPS ===== */
#apps-list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.app-item {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  transition: all .2s;
}
.app-item:hover { border-color: var(--border2); background: rgba(255,255,255,.04); transform: translateY(-1px); }
.app-name { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.app-meta { font-size: 11px; color: var(--text2); display: flex; gap: 12px; flex-wrap: wrap; }
.app-meta a { color: var(--accent2); text-decoration: none; }
.app-meta a:hover { text-decoration: underline; }
.app-status { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; letter-spacing: .3px; }
.status-online { background: rgba(16,185,129,.1); color: var(--green); border: 1px solid rgba(16,185,129,.2); }
.status-stopped { background: rgba(239,68,68,.1); color: var(--red); border: 1px solid rgba(239,68,68,.2); }
.status-error { background: rgba(245,158,11,.1); color: var(--yellow); border: 1px solid rgba(245,158,11,.2); }
.app-actions { display: flex; gap: 5px; flex-wrap: wrap; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.modal-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: 14px; width: 820px; max-width: 95vw; max-height: 80vh; display: flex; flex-direction: column; box-shadow: 0 32px 80px rgba(0,0,0,.6); }
.modal-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 14px; font-weight: 600; }
.modal-header button { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text2); cursor: pointer; font-size: 14px; width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.modal-header button:hover { background: rgba(239,68,68,.15); color: var(--red); border-color: rgba(239,68,68,.3); }
.modal-log { padding: 16px; font-family: 'Consolas', monospace; font-size: 12px; overflow-y: auto; white-space: pre-wrap; flex: 1; background: #020408; color: #e6edf3; line-height: 1.6; }

/* ===== FILE MANAGER ===== */
.files-layout { display: grid; grid-template-columns: 220px 1fr; gap: 14px; height: calc(100vh - 104px); }
.files-sidebar-card { overflow-y: auto; display: flex; flex-direction: column; }
.files-main-card { display: flex; flex-direction: column; min-height: 0; }
.files-editor-card { grid-column: 1 / -1; display: flex; flex-direction: column; }

.files-section { padding: 10px 10px 4px; }
.files-section-label {
  font-size: 10px; font-weight: 600; color: var(--text3);
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 10px 4px;
  display: flex; align-items: center; gap: 6px;
}
.files-section-label i { color: var(--accent2); font-size: 11px; }

.files-app-item {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  color: var(--text2);
  transition: all .15s;
  margin-bottom: 1px;
}
.files-app-item:hover { background: rgba(255,255,255,.05); color: var(--text); }
.files-app-item.active { background: rgba(99,102,241,.12); color: var(--accent2); }
.files-app-item .item-icon { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.files-app-item.active .item-icon { background: rgba(99,102,241,.2); color: var(--accent2); }

.files-divider { height: 1px; background: var(--border); margin: 6px 12px; }

#files-explorer { flex: 1; overflow-y: auto; padding: 8px; }

.file-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: default;
  font-size: 13px;
  transition: background .1s;
  position: relative;
}
.file-row:hover { background: rgba(255,255,255,.04); }
.file-icon { width: 18px; text-align: center; font-size: 13px; flex-shrink: 0; }
.file-name { flex: 1; cursor: pointer; font-weight: 500; }
.file-name:hover { color: var(--accent2); }
.file-size { font-size: 11px; color: var(--text3); min-width: 60px; text-align: right; }
.file-actions { display: flex; gap: 4px; opacity: 0; transition: opacity .15s; }
.file-row:hover .file-actions { opacity: 1; }

.breadcrumb { font-size: 12px; color: var(--text2); display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.breadcrumb-item { color: var(--text2); cursor: pointer; padding: 2px 4px; border-radius: 4px; transition: color .15s; }
.breadcrumb-item:hover { color: var(--accent2); background: rgba(99,102,241,.1); }
.breadcrumb-sep { color: var(--text3); font-size: 10px; }

.file-editor {
  flex: 1;
  width: 100%;
  min-height: 500px;
  background: #020408;
  color: #e6edf3;
  font-family: 'Consolas', 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  padding: 20px;
  border: none;
  outline: none;
  resize: none;
  tab-size: 2;
}

/* ===== SERVICES ===== */
.services-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.service-item { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: border-color .2s; }
.service-item:hover { border-color: var(--border2); }
.service-name { font-size: 14px; font-weight: 600; }
.service-sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.service-status { padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.status-active { background: rgba(16,185,129,.1); color: var(--green); border: 1px solid rgba(16,185,129,.2); }
.status-inactive { background: rgba(239,68,68,.1); color: var(--red); border: 1px solid rgba(239,68,68,.2); }
.service-actions { display: flex; gap: 5px; }
.btn-action { border: 1px solid var(--border2); background: rgba(255,255,255,.04); color: var(--text2); border-radius: 7px; padding: 5px 10px; font-size: 12px; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.btn-action:hover { border-color: var(--accent); color: var(--accent2); background: rgba(99,102,241,.08); }
.btn-action.stop:hover { border-color: var(--red); color: var(--red); background: rgba(239,68,68,.08); }

/* ===== TERMINAL ===== */
.terminal-card { display: flex; flex-direction: column; height: calc(100vh - 104px); }
#terminal-container { flex: 1; padding: 4px; background: #020408; min-height: 400px; }

/* ===== DOCKER ===== */
#docker-status-bar { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 13px; }
#docker-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.container-item { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; transition: border-color .2s; }
.container-item:hover { border-color: var(--border2); }
.container-name { font-size: 13px; font-weight: 600; }
.container-image { font-size: 11px; color: var(--text2); margin-top: 2px; }
.container-state-running { color: var(--green); font-size: 12px; font-weight: 600; }
.container-state-exited { color: var(--red); font-size: 12px; font-weight: 600; }

/* ===== LOGS ===== */
.logs-container { padding: 12px; font-family: 'Consolas', monospace; font-size: 12px; overflow-y: auto; }
.log-entry { padding: 6px 10px; border-bottom: 1px solid rgba(255,255,255,.04); display: flex; gap: 14px; border-radius: 5px; transition: background .1s; }
.log-entry:hover { background: rgba(255,255,255,.03); }
.log-time { color: var(--text3); white-space: nowrap; font-size: 11px; }
.log-action { color: var(--accent2); font-weight: 600; }
.log-user { color: var(--purple); }
.log-ip { color: var(--text2); }

/* ===== EMPTY STATE ===== */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; color: var(--text2); text-align: center; }
.empty-state i { font-size: 40px; margin-bottom: 16px; color: var(--text3); }
.empty-state h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.empty-state p { font-size: 13px; color: var(--text2); }
