/* Dark mode toggle button */
.theme-toggle {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 1000;
    background: #e2e2e2;
    border: none;
    border-radius: 20px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.theme-toggle:hover {
    background: #d0d0d0;
}

.theme-toggle-label {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

/* Dark mode overrides */
[data-theme="dark"] body {
    background: #1a1a2e;
    color: #e0e0e0;
}

[data-theme="dark"] .container {
    background: #16213e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2 {
    color: #e0e0e0;
}

[data-theme="dark"] .theme-toggle {
    background: #2a2a4a;
}

[data-theme="dark"] .theme-toggle:hover {
    background: #3a3a5a;
}

[data-theme="dark"] .theme-toggle-label {
    color: #e0e0e0;
}

/* Table styles */
[data-theme="dark"] th {
    background: #1a1a2e;
    color: #e0e0e0;
}

[data-theme="dark"] th:hover {
    background: #2a2a4a;
}

[data-theme="dark"] td {
    color: #e0e0e0;
}

[data-theme="dark"] tr:hover {
    background: #1a1a2e;
}

[data-theme="dark"] th,
[data-theme="dark"] td {
    border-bottom-color: #2a2a4a;
}

/* Form styles */
[data-theme="dark"] input,
[data-theme="dark"] select {
    background: #1a1a2e;
    border-color: #3a3a5a;
    color: #e0e0e0;
}

[data-theme="dark"] .form-group label {
    color: #c0c0c0;
}

[data-theme="dark"] .form-group input[readonly][disabled] {
    background-color: #2a2a4a;
    color: #888;
}

[data-theme="dark"] .form-group select {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

/* Info items (details page) */
[data-theme="dark"] .info-item {
    background: #1a1a2e;
}

[data-theme="dark"] .info-label {
    color: #aaa;
}

[data-theme="dark"] .info-value {
    color: #e0e0e0;
}

[data-theme="dark"] .url-item {
    background: #1a1a2e;
}

[data-theme="dark"] .url-value {
    background: #0f3460;
    color: #e0e0e0;
    border-color: #3a3a5a;
}

/* Guardrails page */
[data-theme="dark"] .tenant-info {
    background: #1a1a2e;
}

[data-theme="dark"] .tenant-info strong {
    color: #aaa;
}

[data-theme="dark"] .guardrail-item {
    background: #1a1a2e;
}

[data-theme="dark"] .guardrail-name {
    color: #e0e0e0;
}

[data-theme="dark"] .guardrail-description {
    color: #aaa;
}

[data-theme="dark"] .no-guardrails {
    background: #1a1a2e;
    color: #aaa;
}

[data-theme="dark"] .loading {
    color: #aaa;
}

/* Error/success messages */
[data-theme="dark"] .error {
    background: #3d1c24;
    color: #f5a0a0;
}

[data-theme="dark"] .success {
    background: #1c3d24;
    color: #a0f5a0;
}

/* Status colors - keep vibrant in dark mode */
[data-theme="dark"] .status-active {
    color: #4cdf6b;
}

[data-theme="dark"] .status-frozen {
    color: #ffd54f;
}

[data-theme="dark"] .status-deleted {
    color: #ff6b6b;
}

/* Links */
[data-theme="dark"] a {
    color: #6db3f2;
}

/* Logo swap for dark/light mode */
.logo-dark { display: none; }
.logo-light { display: inline; }

[data-theme="dark"] .logo-dark { display: inline; }
[data-theme="dark"] .logo-light { display: none; }