:root {
    --primary: #5e72e4;
    --primary-dark: #4c63d2;
    --secondary: #8392ab;
    --success: #2dce89;
    --danger: #f5365c;
    --warning: #fb6340;
    --info: #11cdef;
    --dark: #172b4d;
    --light: #f4f5f7;
    --white: #ffffff;
    --gray-100: #f6f9fc;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #8898aa;
    --gray-700: #525f7f;
    --gray-800: #32325d;
    --gray-900: #212529;
    --shadow: 0 0 2rem 0 rgba(136, 152, 170, .15);
    --shadow-lg: 0 0 3rem 0 rgba(136, 152, 170, .25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
    font-size: 0.95rem;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(94, 114, 228, 0.4);
}

.btn-secondary {
    background-color: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-300);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    flex: 1;
}

/* Terminal Animation */
.terminal {
    background-color: #1e1e1e;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.terminal-header {
    background-color: #323232;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background-color: #ff5f57; }
.terminal-button.yellow { background-color: #ffbd2e; }
.terminal-button.green { background-color: #28ca42; }

.terminal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #999;
    font-size: 0.875rem;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
    color: #d4d4d4;
}

.terminal-prompt {
    color: #569cd6;
    margin-right: 0.5rem;
}

.terminal-output {
    color: #4ec9b0;
    margin-left: 1rem;
}

.cursor {
    display: inline-block;
    background-color: #d4d4d4;
    width: 8px;
    height: 16px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: var(--gray-100);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--gray-300);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step p {
    color: var(--gray-700);
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
}

.period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    text-align: center;
    font-size: 0.875rem;
}

/* Auth Forms */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
}

/* Alert Styles */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.alert-error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c00;
}

.alert-success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #060;
}

/* Form additions */
.forgot-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.form-help {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 2px;
}

.divider {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    position: relative;
    background: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 14px;
}

/* Google button */
.btn-google {
    background: white;
    color: #3c4043;
    border: 1px solid #dadce0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
}

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3);
}

.google-icon {
    width: 20px;
    height: 20px;
}

.auth-box {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 400px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--gray-600);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray-600);
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dashboard {
    display: flex;
    min-height: 100vh;
    background-color: var(--gray-100);
}

.sidebar {
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    height: 100%;
    overflow-y: auto;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.sidebar-menu {
    padding: 1rem 0;
}

.sidebar-item {
    display: block;
    padding: 0.65rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: var(--gray-100);
    color: var(--primary);
}

.sidebar-icon {
    width: 18px;
    height: 18px;
}

.main-content {
    flex: 1;
    margin-left: 220px;
    padding: 1.75rem 2rem;
}

.jobs-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jobs-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.jobs-stack {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
    margin-bottom: 2rem;
}

.jobs-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    justify-content: flex-end;
}

.card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.75rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.card-subtitle {
    color: var(--gray-600);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.page-header {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header.jobs-page-header {
    align-items: flex-end;
    gap: 1rem;
}

.jobs-page-subtitle {
    color: var(--gray-600);
    margin-top: 0.4rem;
    font-size: 0.9rem;
}

.page-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-card-title {
    color: var(--gray-600);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.vm-list {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.vm-list-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vm-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--gray-700);
    background-color: var(--gray-100);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.vm-name {
    font-weight: 500;
    color: var(--dark);
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.running {
    background-color: rgba(45, 206, 137, 0.1);
    color: var(--success);
}

.status.stopped {
    background-color: rgba(245, 54, 92, 0.1);
    color: var(--danger);
}

.status.pending {
    background-color: rgba(251, 99, 64, 0.1);
    color: var(--warning);
}

/* SSH Command History */
.drawer-ssh-history {
    margin: 1rem 1.5rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
}

.drawer-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.drawer-section-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.drawer-section-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(94, 114, 228, 0.1);
    color: var(--primary);
}

.ssh-history-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ssh-command-block {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem;
}

.ssh-command-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.ssh-command-index {
    font-weight: 600;
    color: var(--gray-700);
}

.ssh-command-time {
    color: var(--gray-600);
}

.ssh-command-duration {
    color: var(--gray-600);
}

.ssh-command-exit {
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    margin-left: auto;
}

.ssh-command-exit.success {
    background-color: rgba(45, 206, 137, 0.1);
    color: var(--success);
}

.ssh-command-exit.error {
    background-color: rgba(245, 54, 92, 0.1);
    color: var(--danger);
}

.ssh-command-text {
    margin: 0;
    padding: 0.5rem;
    background: var(--gray-100);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
}

.ssh-command-output {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-300);
}

.ssh-output-stdout,
.ssh-output-stderr {
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    overflow-x: auto;
    white-space: pre-wrap;
}

.ssh-output-stdout {
    background: rgba(45, 206, 137, 0.05);
    border-left: 2px solid var(--success);
}

.ssh-output-stderr {
    background: rgba(245, 54, 92, 0.05);
    border-left: 2px solid var(--danger);
}

/* Source badges */
.badge-sdk {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(94, 114, 228, 0.1);
    color: var(--primary);
}

.badge-web {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(45, 206, 137, 0.1);
    color: var(--success);
}

.badge-api {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(17, 205, 239, 0.1);
    color: var(--info);
}

.vm-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--gray-600);
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn.danger:hover {
    color: var(--danger);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 6rem 1rem 2rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .steps::before {
        display: none;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
/* SSH Options */
.ssh-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.radio-label:hover {
    background-color: #f7f8fa;
}

.radio-label input[type="radio"] {
    margin: 0;
}

.ssh-info {
    background-color: #f7f8fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.ssh-info h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.ssh-command {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    margin: 8px 0;
    overflow-x: auto;
}

.download-key-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.download-key-btn:hover {
    background-color: #1d4ed8;
}

.ssh-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #2563eb;
    cursor: pointer;
    transition: color 0.2s;
}

.ssh-icon:hover {
    color: #1d4ed8;
}

/* Job Execution Styles */
.job-submission {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.job-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.job-type-card {
    background-color: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.job-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.job-type-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.job-type-card.active {
    border-color: var(--primary);
    background-color: rgba(94, 114, 228, 0.05);
}

.job-type-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--gray-600);
}

.job-type-card.active .job-type-icon {
    color: var(--primary);
}

.job-type-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-type-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.job-form {
    display: none;
}

.job-form.active {
    display: block;
}

.code-editor {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    background-color: var(--gray-100);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.jobs-list {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.jobs-list-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jobs-list-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.jobs-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.template-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jobs-form .form-row,
.template-modal-body .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0;
}

.jobs-form .form-group,
.template-modal-body .form-group {
    flex: 1;
    margin-bottom: 0;
}

.jobs-form .section-title,
.template-modal-body .section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.jobs-form .job-type-grid,
.template-modal-body .job-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.jobs-list {
    padding: 0;
}

.jobs-list table {
    width: 100%;
    border-collapse: collapse;
}

.jobs-list th,
.jobs-list td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.85rem;
    color: var(--gray-700);
    text-align: left;
}

.jobs-list th {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    font-weight: 600;
}

.jobs-list tbody tr:hover {
    background-color: var(--gray-100);
}

.jobs-header-actions {
    display: flex;
    gap: 0.75rem;
}

.jobs-tabs .tab-button {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
}

.jobs-tabs {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.tab-button {
    border: none;
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover {
    background-color: var(--gray-200);
}

.tab-button.active {
    background-color: rgba(94, 114, 228, 0.15);
    color: var(--primary);
}

.tab-panel {
    display: none;
    margin-top: 1.5rem;
}

.tab-panel.active {
    display: block;
}

.template-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.template-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.template-title-link:hover .template-title {
    color: var(--primary);
}

.template-title {
    font-weight: 600;
    color: var(--dark);
}

.template-subtitle {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.empty-state {
    padding: 2.5rem;
    text-align: center;
    color: var(--gray-600);
}

.revision-entry {
    background-color: var(--gray-100);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.revision-meta {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.revision-comment {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.revision-script {
    background-color: #0b1021;
    color: #e0e0e0;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8125rem;
    overflow-x: auto;
}

.job-id {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.status.pending,
.status.not_started,
.status.running,
.status.in_progress {
    background-color: rgba(251, 99, 64, 0.1);
    color: var(--warning);
}

.status.completed {
    background-color: rgba(45, 206, 137, 0.1);
    color: var(--success);
}

.status.failed,
.status.error {
    background-color: rgba(245, 54, 92, 0.1);
    color: var(--danger);
}

.status.cancelled {
    background-color: rgba(136, 152, 170, 0.1);
    color: var(--gray-600);
}

/* Job Logs Modal */
.modal-lg {
    max-width: 900px;
}

.logs-container {
    background-color: #1a1d23;
    border-radius: 0.5rem;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem;
    background-color: #252830;
    border-bottom: 1px solid #2d3139;
    margin: 0;
}

.job-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-info-label {
    color: #8b92a1;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.job-info-value {
    color: #e4e7eb;
    font-weight: 500;
    font-size: 0.875rem;
}

.job-info-value[title] {
    cursor: help;
}

.logs-output {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.logs-output::-webkit-scrollbar {
    width: 8px;
}

.logs-output::-webkit-scrollbar-track {
    background: #252830;
}

.logs-output::-webkit-scrollbar-thumb {
    background: #3a3f4b;
    border-radius: 4px;
}

.logs-output::-webkit-scrollbar-thumb:hover {
    background: #4a4f5b;
}

.log-line {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.log-line:last-child {
    border-bottom: none;
}

.log-timestamp {
    color: #6b7280;
    font-size: 0.75rem;
    min-width: 85px;
    flex-shrink: 0;
}

.log-message {
    color: #d1d5db;
    flex: 1;
    white-space: pre-wrap;
    word-break: break-word;
}

.log-line.error .log-message {
    color: #ef4444;
}

.log-line.warning .log-message {
    color: #f59e0b;
}

.log-line.info .log-message {
    color: #3b82f6;
}

.log-line.success .log-message {
    color: #10b981;
}

.log-line.empty {
    color: #6b7280;
    font-style: italic;
    justify-content: center;
    padding: 2rem;
}

.log-line.restart-marker {
    border-top: 2px dashed #4a4f5b;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

.log-line.restart-marker .log-message {
    color: #8b92a1;
    font-weight: 600;
}

.log-line.job-output .log-message {
    color: #3b82f6;
}

.log-line.success .log-message {
    color: #10b981;
    font-weight: 600;
}

.error-message {
    color: var(--danger);
    text-align: center;
    padding: 2rem;
}

.log-drawer {
    position: fixed;
    top: 0;
    right: -520px;
    width: 520px;
    height: 100vh;
    background-color: #0b1021;
    color: #e2e8f0;
    box-shadow: -12px 0 24px rgba(15, 23, 42, 0.35);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 1050;
}

.log-drawer.open {
    right: 0;
}

.log-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1040;
}

.log-drawer-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.drawer-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
}

.toggle-label input[type="checkbox"] {
    cursor: pointer;
}

.log-lines.hide-timestamps .log-timestamp {
    display: none;
}

.drawer-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.drawer-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
}

.drawer-meta {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.drawer-meta-row span:first-child {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.drawer-meta-row span:last-child {
    color: #e2e8f0;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
}

.log-lines {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    background-color: var(--gray-800);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background-color: var(--success);
}

.notification.error {
    background-color: var(--danger);
}

.notification.warning {
    background-color: var(--warning);
}

/* Pricing Page Styles */
.pricing-container {
    padding: 80px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 4px;
}

.plan-price .period {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--gray-700);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.included-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}
EOF < /dev/null
.modal-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}
.job-type-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.job-type-buttons-inline {
    display: flex;
    gap: 0.75rem;
}

.job-type-buttons-inline .job-type-button {
    flex: 1;
}

.job-type-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1.5px solid var(--gray-200);
    background-color: var(--gray-100);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    font: inherit;
}

.job-type-button:hover {
    border-color: var(--primary);
    background-color: rgba(94, 114, 228, 0.08);
}

.job-type-button.active {
    border-color: var(--primary);
    background-color: rgba(94, 114, 228, 0.12);
    box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.15);
}

.job-type-button-icon {
    color: var(--primary);
}

.job-type-button-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.job-type-button-desc {
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* Script Type Selector */
.script-type-selector {
    margin-bottom: 1.5rem;
}

.script-type-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.script-type-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    background-color: white;
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 120px;
}

.script-type-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(94, 114, 228, 0.05);
}

.script-type-btn.active {
    border-color: var(--primary);
    color: white;
    background-color: var(--primary);
}

.script-type-btn .info-icon {
    margin-left: 0.25rem;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.script-type-btn:hover .info-icon {
    opacity: 0.8;
}

.script-type-btn.active .info-icon {
    opacity: 0.9;
}

/* Job Detail Page */
.job-detail-content {
    padding: 2rem;
    background-color: var(--gray-100);
    min-height: 100vh;
}

.job-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-detail-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.job-detail-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.job-detail-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn-close:hover {
    background-color: var(--gray-100);
    color: var(--dark);
}

.job-detail-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0 2rem;
    border-bottom: 1px solid var(--gray-200);
    background-color: var(--gray-50);
}

.job-detail-tabs .tab-button {
    border: none;
    background: none;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s ease;
}

.job-detail-tabs .tab-button:hover {
    color: var(--primary);
    background: none;
}

.job-detail-tabs .tab-button.active {
    background: none;
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.runs-table-container {
    padding: 2rem;
}

.runs-table {
    width: 100%;
}

.runs-table th {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.runs-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.runs-table tbody tr {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.runs-table tbody tr:hover {
    background-color: var(--gray-50);
}

.template-editor-container {
    padding: 2rem;
}

.template-form {
    max-width: 900px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.stat-box {
    background-color: var(--gray-100);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

/* API Keys Page */
.api-keys-container {
    max-width: 1200px;
}

.api-key-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(251, 99, 64, 0.1);
    border: 1px solid rgba(251, 99, 64, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.api-key-notice svg {
    color: var(--warning);
    flex-shrink: 0;
}

.api-keys-list {
    overflow-x: auto;
}

.api-key-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
}

.api-key-preview {
    color: var(--gray-600);
}

.api-key-hidden {
    color: var(--gray-400);
}

.api-key-warning {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(245, 54, 92, 0.1);
    border: 1px solid rgba(245, 54, 92, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.api-key-warning svg {
    color: var(--danger);
    flex-shrink: 0;
}

.api-key-display {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.api-key-display input {
    flex: 1;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.code-block {
    background-color: #1a1d23;
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    white-space: pre;
}

.action-btn.danger {
    color: var(--danger);
}

.action-btn.danger:hover {
    background-color: rgba(245, 54, 92, 0.1);
}

/* Timestamp Toggle */
.toggle-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.log-lines.hide-timestamps .log-timestamp {
    display: none;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    background: var(--dark);
    color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
    font-size: 0.875rem;
}

.notification.error {
    background: var(--danger);
}

.notification.success {
    background: var(--success);
}

.notification.info {
    background: var(--primary);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
