@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --bg-base: #050811; /* Deep charcoal blue instead of absolute black */
  --bg-color: #0b0f19;
  --surface-color: rgba(13, 18, 30, 0.65);
  --surface-hover: rgba(30, 41, 59, 0.8);
  --surface-border: rgba(255, 90, 0, 0.15); /* Sutil accent borders */
  --primary-color: #FF5A00; /* Hi-vis Orange */
  --primary-hover: #FF7B33;
  --primary-glow: rgba(255, 90, 0, 0.25);
  --secondary-color: #E2E8F0;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8; /* Slate-400 for high-end contrast */
  --danger-color: #FF4D4D;
  --success-color: #10B981; /* Emerald Green */
  --warning-color: #F59E0B; /* Amber Yellow */
  --input-bg: rgba(5, 8, 15, 0.6);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px; /* Smooth modern curved corners */
  --radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Custom dark scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(5, 8, 15, 0.5);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 90, 0, 0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 90, 0, 0.4);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
}

/* Smooth background radial masks for depth */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 0%, transparent 10%, var(--bg-base) 90%);
  pointer-events: none;
  z-index: -1;
}

/* Decor Neon Floating Blobs */
.blob {
  display: block !important; /* Re-enabled decorative elements */
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -2;
  pointer-events: none;
  animation: floatBlobs 16s infinite alternate ease-in-out;
}
.blob-1 {
  top: -15%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.15) 0%, transparent 80%);
}
.blob-2 {
  bottom: -15%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 80%);
  animation-delay: -8s;
}

@keyframes floatBlobs {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.15) translate(4%, 3%); opacity: 1; }
  100% { transform: scale(0.9) translate(-2%, -2%); opacity: 0.8; }
}

/* Ocultar watermark del fondo */
.dashboard-watermark {
  display: none !important;
}

h1, h2, h3, h4 { 
  font-family: var(--font-heading);
  color: var(--text-primary); 
  margin-bottom: 1rem; 
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

p { 
  line-height: 1.6; 
  color: var(--text-secondary); 
}

/* --- Premium Glassmorphism Container --- */
.glass-container {
  background: var(--surface-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 90, 0, 0.25);
  border-radius: var(--radius);
  position: relative;
  padding: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.glass-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* Tech detailing for container corners */
.glass-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  border-bottom-right-radius: var(--radius);
  pointer-events: none;
  transition: var(--transition);
}

.glass-container:hover::after {
  width: 24px;
  height: 24px;
  box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Views Management --- */
.view {
  display: none;
  opacity: 0;
  padding: 2.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.view.active-view {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: viewEntry 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes viewEntry {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hidden { 
  display: none !important; 
}

/* --- Floating Navigation Bar --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2rem;
  background: rgba(8, 12, 21, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 90, 0, 0.15);
  position: sticky;
  top: 15px;
  z-index: 100;
  margin: 15px auto 0;
  max-width: 1360px;
  border-radius: var(--radius);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-primary) !important;
  font-weight: 800;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.nav-brand span { 
  color: var(--text-primary) !important; 
}
.nav-brand svg { 
  stroke: var(--primary-color) !important; 
  margin-right: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 90, 0, 0.3));
}

.nav-search { 
  flex: 1; 
  max-width: 500px; 
  margin: 0 2rem; 
}

.search-box {
  width: 100%;
  background: var(--input-bg);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-mono);
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-box:focus {
  background: rgba(13, 18, 30, 0.9);
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 
    0 0 15px var(--primary-glow), 
    inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Typography & Layout --- */
.subtitle { 
  margin-top: -0.5rem; 
  margin-bottom: 1.5rem; 
  color: var(--primary-color); 
  font-weight: 600; 
  font-family: var(--font-mono); 
  font-size: 0.85rem; 
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }

.header-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.25rem;
}
.header-action h2, .header-action h3 { 
  margin-bottom: 0; 
  font-size: 1.8rem;
}

.breadcrump {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.breadcrump h2 { 
  margin: 0; 
  font-size: 2.2rem; 
  color: var(--text-primary); 
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* --- Forms & Inputs --- */
.input-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

input, .styled-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
input[type="number"], input[type="date"] {
  font-family: var(--font-mono);
}

input:focus, .styled-select:focus {
  border-color: var(--primary-color);
  background: rgba(13, 18, 30, 0.9);
  box-shadow: 
    0 0 12px rgba(255, 90, 0, 0.15), 
    inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.styled-select option { 
  background: var(--bg-color); 
}

.inline-form {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.inline-form .input-group { 
  margin-bottom: 0; 
  flex: 1; 
  min-width: 200px;
}

/* --- Buttons --- */
button {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

button::before {
  content:'';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: all 0.5s;
  pointer-events: none;
}
button:hover::before {
  left: 100%;
}
button:active { 
  transform: scale(0.96); 
}

.btn-primary {
  background: var(--primary-color);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
  background: rgba(13, 18, 30, 0.8);
  color: var(--primary-color);
  border-color: rgba(255, 90, 0, 0.3);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { 
  background: rgba(255, 90, 0, 0.1); 
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(255, 90, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  box-shadow: none;
}
.btn-ghost:hover { 
  color: var(--text-primary); 
  background: rgba(255, 255, 255, 0.03); 
  border-radius: var(--radius-sm);
}

.btn-small { 
  padding: 0.5rem 1rem; 
  font-size: 0.85rem; 
}

/* Action buttons with neon values */
.btn-s-success { 
  background: rgba(16, 185, 129, 0.1); 
  color: var(--success-color); 
  border: 1px solid rgba(16, 185, 129, 0.25); 
}
.btn-s-success:hover { 
  background: rgba(16, 185, 129, 0.2); 
  border-color: var(--success-color);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.btn-s-warning { 
  background: rgba(245, 158, 11, 0.1); 
  color: var(--warning-color); 
  border: 1px solid rgba(245, 158, 11, 0.25); 
}
.btn-s-warning:hover { 
  background: rgba(245, 158, 11, 0.2); 
  border-color: var(--warning-color);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.btn-s-danger { 
  background: rgba(239, 68, 68, 0.1); 
  color: var(--danger-color); 
  border: 1px solid rgba(239, 68, 68, 0.25); 
}
.btn-s-danger:hover { 
  background: rgba(239, 68, 68, 0.2); 
  border-color: var(--danger-color);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

/* --- Login Specific --- */
#login-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  width: 100%;
  max-width: 440px;
  padding: 3rem 2.5rem;
  background: rgba(13, 18, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border-radius: var(--radius);
  position: relative;
}
.login-card::before {
  content: 'SECURE_AUTH_NODE';
  position: absolute;
  top: -24px;
  left: 10px;
  color: var(--primary-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo-area { 
  text-align: left; 
  margin-bottom: 2.5rem; 
}
.logo-area h1 { 
  font-size: 2.6rem; 
  color: var(--text-primary); 
  margin-bottom: 0.5rem; 
  margin-top: 1rem;
}
.logo-area svg { 
  stroke: var(--primary-color) !important; 
  width: 42px; 
  height: 42px;
  filter: drop-shadow(0 0 6px rgba(255, 90, 0, 0.4));
}
.logo-area p { 
  color: var(--text-secondary) !important; 
  font-family: var(--font-mono); 
  font-size: 0.9rem; 
  letter-spacing: 0.05em; 
  text-transform: uppercase;
}

/* --- Dashboard Grid --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  padding: 2.25rem 2rem;
  cursor: pointer;
  background: rgba(13, 18, 30, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}
.project-card:hover::before {
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}
.project-card h3 { 
  font-size: 1.6rem; 
  margin-bottom: 0.5rem; 
  color: var(--text-primary);
  transition: var(--transition);
}
.project-card:hover h3 {
  color: var(--primary-color);
}
.project-card p { 
  font-size: 0.85rem; 
  font-family: var(--font-mono); 
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.project-card:hover {
  border-color: rgba(255, 90, 0, 0.25);
  transform: translateY(-6px);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.5), 
    0 0 25px rgba(255, 90, 0, 0.08);
}
.project-card-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0px;
}
.tab-btn {
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.5rem;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover { 
  color: var(--text-primary); 
  background: rgba(255, 255, 255, 0.02);
}
.tab-btn.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 90, 0, 0.2);
}
.tab-content { 
  display: none; 
  animation: fadeIn 0.4s ease; 
}
.tab-content.active { 
  display: block; 
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Tables --- */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius);
  background: rgba(13, 18, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th, td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
th {
  background: rgba(5, 8, 15, 0.5);
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
td {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
td strong {
  color: var(--text-primary);
}
/* Monospace for financial data */
td:nth-child(n+3) {
  font-family: var(--font-mono);
}
tr { 
  transition: var(--transition); 
}
tr:last-child td { 
  border-bottom: none; 
}
tr:hover td { 
  background: rgba(255, 255, 255, 0.03); 
}
.actions-cell { 
  display: flex; 
  gap: 0.6rem; 
  flex-wrap: wrap; 
  align-items: center;
}

/* --- Summary Cards --- */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.summary-cards .card {
  padding: 2rem 1.75rem;
  background: rgba(13, 18, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.summary-cards .card h4 {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.summary-cards .card p {
  font-size: 2.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.highlight-card {
  background: rgba(16, 185, 129, 0.04) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
}
.highlight-card p { 
  color: var(--success-color) !important; 
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.2); 
}

.highlight-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--success-color);
  box-shadow: 0 0 10px var(--success-color);
}

/* Modals */
.modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 500px;
  padding: 3rem 2.5rem;
  background: rgba(13, 18, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--primary-color);
  border-radius: var(--radius);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6), 
    0 0 50px rgba(255, 90, 0, 0.05);
  transform: translateY(30px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal:not(.hidden) .modal-content {
  transform: translateY(0) scale(1);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Utilities */
.text-right { text-align: right; }
.positive { color: var(--success-color); font-weight: 700; font-family: var(--font-mono);}
.negative { color: var(--danger-color); font-weight: 700; font-family: var(--font-mono);}

/* Modern Pill Tags & Details */
.tag {
  background: rgba(255, 90, 0, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(255, 90, 0, 0.25);
  padding: 4px 12px;
  border-radius: 50px; /* Elegant pill capsule tag */
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.history-item {
  display: flex;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  font-family: var(--font-mono);
}
.history-item:hover {
  background: rgba(255, 255, 255, 0.02);
}
.history-item span:first-child { 
  color: var(--text-secondary); 
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  nav { 
    flex-direction: column; 
    gap: 1.25rem; 
    padding: 1.25rem; 
    top: 10px;
    margin: 10px 10px 0;
  }
  .nav-brand { justify-content: center; width: 100%; }
  .nav-search { display: block; margin: 0; width: 100%; max-width: 100%; }
  .nav-actions { justify-content: center; width: 100%; }
  
  .view { padding: 1.5rem 1rem; }
  .header-action { flex-direction: column; align-items: flex-start; gap: 1rem;}
  .actions-cell { flex-direction: column; align-items: flex-start; width: 100%; }
  .actions-cell button { width: 100%; }
  .tabs { flex-wrap: wrap; border-bottom: none; gap:0.5rem;}
  .tab-btn { 
    flex: 1 1 calc(50% - 0.5rem); 
    text-align: center; 
    font-size: 0.85rem; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: var(--radius-sm);
  }
  .tab-btn.active { 
    border-color: var(--primary-color); 
    border-bottom: 1px solid var(--primary-color); 
  }
  .inline-form { flex-direction: column; align-items: stretch;}
}
