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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #e4e4e7;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand .hn {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #a1a1aa;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: #404040;
    color: #e4e4e7;
}

.nav-link.active {
    background: #3b82f6;
    color: #ffffff;
}

.nav-link .hn {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 24px 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #404040;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #6366f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1a1aa;
    font-size: 14px;
    background: #404040;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #555;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.save-options {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instant-save-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.toggle-label input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: #404040;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #555;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
    background: #3b82f6;
    border-color: #7c3aed;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(20px);
    background: #ffffff;
}

.toggle-text {
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 500;
}

.toggle-label input[type="checkbox"]:checked ~ .toggle-text {
    color: #3b82f6;
}

/* Code Modal Styles */
.code-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.code-modal-content {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #404040;
    overflow: hidden;
}

.code-modal-header {
    background: #3b82f6;
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.code-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.code-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.code-modal-body {
    padding: 24px;
}

.code-modal-body p {
    margin: 0 0 16px 0;
    color: #e4e4e7;
    line-height: 1.5;
}

.code-block {
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.code-block code {
    background: none;
    color: #10b981;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    padding: 0;
}

.copy-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.code-note {
    font-size: 12px;
    color: #a1a1aa;
    margin-top: 12px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #6366f1;
    color: white;
    border: 1px solid #7c3aed;
}

.btn-primary:hover {
    background: #5b21b6;
    transform: translateY(-1px);
}

.btn-success {
    background: #10b981;
    color: white;
    border: 1px solid #059669;
}

.btn-success:hover {
    background: #047857;
    transform: translateY(-1px);
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: 1px solid #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6b7280;
    color: #e4e4e7;
    border: 1px solid #9ca3af;
}

.btn-secondary:hover {
    background: #9ca3af;
}

/* Login Screen */
.login-screen {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 450px;
    margin: 100px auto;
    border: 1px solid #404040;
}

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-subtitle {
    color: #a1a1aa;
    margin-bottom: 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #f8fafc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #404040;
    border-radius: 6px;
    font-size: 14px;
    background: #1a1a1a;
    color: #e4e4e7;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #111111;
}

.form-input::placeholder {
    color: #6b7280;
}

.error-message {
    background: #2d1b1b;
    color: #fca5a5;
    padding: 16px;
    border-radius: 6px;
    margin-top: 20px;
    display: none;
    border: 1px solid #7f1d1d;
}

/* Main Editor */
.editor-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    height: calc(100vh - 200px);
}

.sidebar {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    overflow-y: auto;
    border: 1px solid #404040;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-list {
    list-style: none;
}

.file-item {
    padding: 16px 20px;
    margin-bottom: 8px;
    background: #404040;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #555;
}

.file-item:hover {
    background: #4a4a4a;
    transform: translateX(4px);
}

.file-item.active {
    background: #6366f1;
    color: white;
    border-color: #7c3aed;
}

.file-name {
    font-weight: 600;
    font-size: 14px;
}

.file-count {
    background: #6b7280;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.file-item.active .file-count {
    background: rgba(255,255,255,0.3);
}

.main-content {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    overflow-y: auto;
    border: 1px solid #404040;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #404040;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.placeholder-list {
    display: grid;
    gap: 20px;
}

.placeholder-item {
    background: #404040;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid #6366f1;
    transition: all 0.2s;
    border: 1px solid #555;
}

.placeholder-item:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.placeholder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.placeholder-name {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
}

.placeholder-actions {
    display: flex;
    gap: 12px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
}

.placeholder-details {
    color: #a1a1aa;
    font-size: 14px;
}

.condition-list {
    margin: 12px 0;
}

.condition-item {
    background: #1a1a1a;
    padding: 12px 16px;
    margin: 6px 0;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #e4e4e7;
    border: 1px solid #404040;
}

.output-text {
    background: #1a2e1a;
    padding: 12px 16px;
    border-radius: 4px;
    margin-top: 12px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #10b981;
    border: 1px solid #404040;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #2d2d2d;
    border-radius: 8px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid #404040;
    margin: 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #404040;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #a1a1aa;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.close-btn:hover {
    color: #ef4444;
    background: #2d1b1b;
}

.form-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.conditions-container {
    border: 2px solid #404040;
    border-radius: 6px;
    padding: 20px;
    background: #1a1a1a;
}

.condition-input-group {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.condition-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #404040;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: #111111;
    color: #e4e4e7;
    transition: all 0.2s;
}

.condition-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #0a0a0a;
}

.condition-input::placeholder {
    color: #6b7280;
}

.add-condition-btn {
    background: #10b981;
    color: white;
    border: 1px solid #059669;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.add-condition-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.remove-condition-btn {
    background: #ef4444;
    color: white;
    border: 1px solid #dc2626;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.remove-condition-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.output-section {
    margin-top: 24px;
}

.output-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #404040;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #1a1a1a;
    color: #e4e4e7;
    transition: all 0.2s;
}

.output-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #111111;
}

.output-input::placeholder {
    color: #6b7280;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #404040;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #a1a1aa;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
    color: #6b7280;
}

.empty-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e4e4e7;
}

.empty-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .editor-layout {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {
    .editor-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .header-left, .header-right {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 24px;
    }
    
    .login-screen {
        margin: 50px 20px;
        padding: 32px;
    }
}

/* Font Awesome Icons */
.fas, .far, .fab {
    margin-right: 8px;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

/* Special styling for logo icon */
.logo-icon .fas {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Button icon styling */
.btn .fas {
    margin-right: 6px;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Form label icon styling */
.form-label .fas {
    margin-right: 8px;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

/* Navigation icon styling */
.nav-link .fas {
    margin-right: 8px;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.nav-brand .fas {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.nav-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

/* Homepage Styles */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    border-bottom: 1px solid #404040;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 32px;
    color: #3b82f6;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Sparkle Text Animation */
.sparkle-text {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkleGradient 4s linear infinite;
    position: relative;
}

.sparkle-text::before {
    content: '✨';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-text::after {
    content: '✨';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkleFloat 3s ease-in-out infinite 1.5s;
}

@keyframes sparkleGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(-50%) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-50%) rotate(180deg);
        opacity: 1;
    }
}

.hero-description {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.no-underline {
    text-decoration: none !important;
}

.no-underline:hover {
    text-decoration: none !important;
}

.feature-preview {
    background: #2d2d2d;
    border-radius: 12px;
    border: 1px solid #404040;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.preview-header {
    background: #404040;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

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

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.preview-title {
    color: #e4e4e7;
    font-weight: 600;
}

.preview-content {
    padding: 24px;
}

.preview-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.preview-line:last-child {
    margin-bottom: 0;
}

.preview-key {
    color: #3b82f6;
    font-weight: 600;
    min-width: 120px;
}

.preview-arrow {
    color: #6b7280;
    font-weight: bold;
}

.preview-value {
    color: #10b981;
    font-weight: 600;
}

/* YAML Syntax Highlighting */
.preview-content {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.yaml-line {
    display: block;
    margin-bottom: 4px;
    padding: 2px 0;
    white-space: pre;
}

.yaml-line:last-child {
    margin-bottom: 0;
}

/* YAML syntax colors */
.yaml-key {
    color: #f472b6; /* Pink for keys */
}

.yaml-string {
    color: #34d399; /* Green for strings */
}

.yaml-value {
    color: #fbbf24; /* Yellow for values */
}

.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 60px;
}

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

.feature-card {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: #3b82f6;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon .fas {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.feature-description {
    color: #a1a1aa;
    line-height: 1.6;
}

.getting-started {
    background: #2d2d2d;
    padding: 80px 0;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.step-content p {
    color: #a1a1aa;
    line-height: 1.6;
}

.footer {
    background: #1a1a1a;
    padding: 60px 0 20px;
    border-top: 1px solid #404040;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.footer-section p {
    color: #a1a1aa;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #404040;
    color: #6b7280;
}

/* Responsive Homepage */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Development Roadmap Section */
.roadmap {
    background: #1a1a1a;
    padding: 80px 0;
    border-top: 1px solid #404040;
}

.roadmap-line {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #2d2d2d;
    border: 3px solid #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-circle.current {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: #2d2d2d;
}

.roadmap-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.roadmap-connector {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin: 0 20px;
    position: relative;
}

.roadmap-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #8b5cf6;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.circle-content {
    text-align: center;
    color: #e4e4e7;
}

.phase-title {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.phase-price {
    font-size: 24px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.phase-description {
    font-size: 14px;
    color: #a1a1aa;
    margin-bottom: 4px;
}

.phase-feature {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .roadmap-line {
        flex-direction: column;
        gap: 40px;
    }
    
    .roadmap-connector {
        width: 4px;
        height: 80px;
        margin: 0;
        transform: rotate(90deg);
    }
    
    .roadmap-connector::before {
        top: -8px;
        right: 50%;
        transform: translateX(50%);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #8b5cf6;
    }
    
    .roadmap-circle {
        width: 180px;
        height: 180px;
    }
}

/* Supabase Integration Styles */
.auth-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

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

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-email {
    font-size: 12px;
    color: #a1a1aa;
    margin-bottom: 4px;
}

.server-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: #2d2d2d;
    border-radius: 8px;
    border: 1px solid #404040;
}

.server-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #e4e4e7;
    white-space: nowrap;
}

.server-select-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.server-select {
    flex: 1;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #404040;
    border-radius: 6px;
    color: #e4e4e7;
    font-size: 14px;
}

.server-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Modal Styles */
.modal-backdrop, .auth-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal, .auth-modal {
    background: #2d2d2d;
    border-radius: 12px;
    border: 1px solid #404040;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header, .auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #404040;
}

.modal-header h3, .auth-modal-header h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 18px;
}

.modal-close, .auth-modal-close {
    background: none;
    border: none;
    color: #a1a1aa;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.modal-close:hover, .auth-modal-close:hover {
    background: #404040;
    color: #e4e4e7;
}

.modal-body, .auth-modal-body {
    padding: 20px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-switch {
    text-align: center;
    color: #a1a1aa;
    font-size: 14px;
}

.auth-switch a {
    color: #3b82f6;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-full {
    width: 100%;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #10b981;
}

.notification-error {
    background: #ef4444;
}

.notification-info {
    background: #3b82f6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #a1a1aa;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #404040;
}

.empty-state h3 {
    margin: 0 0 8px 0;
    color: #e4e4e7;
}

.empty-state p {
    margin: 0;
    font-size: 14px;
}

/* Placeholder Item Styles */
.placeholder-item {
    background: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.placeholder-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.placeholder-name {
    margin: 0;
    color: #f8fafc;
    font-size: 16px;
}

.placeholder-actions {
    display: flex;
    gap: 8px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.placeholder-condition,
.placeholder-output {
    font-size: 14px;
}

.placeholder-condition strong,
.placeholder-output strong {
    color: #a1a1aa;
    margin-right: 8px;
}

.placeholder-condition code,
.placeholder-output code {
    background: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
    color: #e4e4e7;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-container {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .server-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .server-select-wrapper {
        flex-direction: column;
    }
    
    .modal, .auth-modal {
        width: 95%;
        margin: 20px;
    }
}
 
 / *   M o d a l   O v e r l a y   -   F i x e d   C e n t e r i n g   * / 
 . m o d a l - o v e r l a y   { 
         d i s p l a y :   n o n e ; 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
         z - i n d e x :   1 0 0 0 ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . m o d a l - o v e r l a y [ s t y l e * = ' d i s p l a y :   f l e x ' ]   { 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 } 
 
 / *   M o d a l   C o n t a i n e r   * / 
 . m o d a l - c o n t a i n e r   { 
         b a c k g r o u n d :   # 2 a 2 a 2 a ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
         m a x - w i d t h :   5 0 0 p x ; 
         w i d t h :   9 0 % ; 
         m a x - h e i g h t :   9 0 v h ; 
         o v e r f l o w - y :   a u t o ; 
         a n i m a t i o n :   m o d a l S l i d e I n   0 . 3 s   e a s e - o u t ; 
         m a r g i n :   0 ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 @ k e y f r a m e s   m o d a l S l i d e I n   { 
         f r o m   { 
                 o p a c i t y :   0 ; 
                 t r a n s f o r m :   t r a n s l a t e Y ( - 2 0 p x )   s c a l e ( 0 . 9 5 ) ; 
         } 
         t o   { 
                 o p a c i t y :   1 ; 
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ; 
         } 
 } 
 
 / *   M o d a l   H e a d e r   * / 
 . m o d a l - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         p a d d i n g :   2 0 p x   2 4 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # 3 a 3 a 3 a ; 
 } 
 
 . m o d a l - t i t l e   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # f f f f f f ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
 } 
 
 . m o d a l - c l o s e   { 
         b a c k g r o u n d :   n o n e ; 
         b o r d e r :   n o n e ; 
         c o l o r :   # 8 8 8 ; 
         f o n t - s i z e :   1 8 p x ; 
         c u r s o r :   p o i n t e r ; 
         p a d d i n g :   4 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . m o d a l - c l o s e : h o v e r   { 
         c o l o r :   # f f f ; 
         b a c k g r o u n d :   # 3 a 3 a 3 a ; 
 } 
 
 / *   M o d a l   B o d y   * / 
 . m o d a l - b o d y   { 
         p a d d i n g :   2 4 p x ; 
 } 
 
 / *   M o d a l   F o o t e r   * / 
 . m o d a l - f o o t e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   2 0 p x   2 4 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # 3 a 3 a 3 a ; 
 } 
 
 / *   F o r m   G r o u p s   * / 
 . f o r m - g r o u p   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . f o r m - l a b e l   { 
         d i s p l a y :   b l o c k ; 
         m a r g i n - b o t t o m :   8 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # f f f f f f ; 
         f o n t - s i z e :   1 4 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
 } 
 
 . f o r m - h e l p - t e x t   { 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   # 8 8 8 ; 
         f o n t - w e i g h t :   n o r m a l ; 
         m a r g i n - l e f t :   2 0 p x ; 
 } 
 
 . f o r m - i n p u t   { 
         w i d t h :   1 0 0 % ; 
         p a d d i n g :   1 2 p x   1 6 p x ; 
         b o r d e r :   1 p x   s o l i d   # 4 a 4 a 4 a ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
         c o l o r :   # f f f f f f ; 
         f o n t - s i z e :   1 4 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 } 
 
 . f o r m - i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 0 0 7 a c c ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 2 ,   2 0 4 ,   0 . 1 ) ; 
 } 
 
 / *   C o n d i t i o n s   E d i t o r   * / 
 . c o n d i t i o n s - e d i t o r   { 
         m a r g i n - t o p :   8 p x ; 
 } 
 
 . c o n d i t i o n s - l i s t   { 
         m a r g i n - b o t t o m :   1 2 p x ; 
 } 
 
 . c o n d i t i o n - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . c o n d i t i o n - i n p u t   { 
         f l e x :   1 ; 
         p a d d i n g :   1 0 p x   1 2 p x ; 
         b o r d e r :   1 p x   s o l i d   # 4 a 4 a 4 a ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
         c o l o r :   # f f f f f f ; 
         f o n t - s i z e :   1 3 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . c o n d i t i o n - i n p u t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 0 0 7 a c c ; 
         b o x - s h a d o w :   0   0   0   2 p x   r g b a ( 0 ,   1 2 2 ,   2 0 4 ,   0 . 1 ) ; 
 } 
 
 . c o n d i t i o n - r e m o v e   { 
         b a c k g r o u n d :   # d c 3 5 4 5 ; 
         b o r d e r :   n o n e ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   8 p x   1 0 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   1 2 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . c o n d i t i o n - r e m o v e : h o v e r   { 
         b a c k g r o u n d :   # c 8 2 3 3 3 ; 
 } 
 
 . b t n - a d d - c o n d i t i o n   { 
         b a c k g r o u n d :   # 2 8 a 7 4 5 ; 
         b o r d e r :   n o n e ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   1 3 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . b t n - a d d - c o n d i t i o n : h o v e r   { 
         b a c k g r o u n d :   # 2 1 8 8 3 8 ; 
 } 
 
 / *   B u t t o n s   * / 
 . b t n - c a n c e l   { 
         b a c k g r o u n d :   # 6 c 7 5 7 d ; 
         b o r d e r :   n o n e ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   1 0 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   1 4 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . b t n - c a n c e l : h o v e r   { 
         b a c k g r o u n d :   # 5 a 6 2 6 8 ; 
 } 
 
 . b t n - s a v e   { 
         b a c k g r o u n d :   # 0 0 7 a c c ; 
         b o r d e r :   n o n e ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   1 0 p x   2 0 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         c u r s o r :   p o i n t e r ; 
         f o n t - s i z e :   1 4 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . b t n - s a v e : h o v e r   { 
         b a c k g r o u n d :   # 0 0 5 a 9 e ; 
 } 
 
 / *   F i l e   L i s t   w i t h   S u b f o l d e r   S u p p o r t   * / 
 . f o l d e r - h e a d e r   { 
         b a c k g r o u n d :   # 3 a 3 a 3 a   ! i m p o r t a n t ; 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
         f o n t - w e i g h t :   6 0 0 ; 
         c u r s o r :   d e f a u l t   ! i m p o r t a n t ; 
         b o r d e r - l e f t :   3 p x   s o l i d   # 0 0 7 a c c ; 
 } 
 
 . f o l d e r - h e a d e r : h o v e r   { 
         b a c k g r o u n d :   # 3 a 3 a 3 a   ! i m p o r t a n t ; 
 } 
 
 . f o l d e r - i c o n   { 
         c o l o r :   # 0 0 7 a c c ; 
         m a r g i n - r i g h t :   8 p x ; 
 } 
 
 . f i l e - i c o n   { 
         c o l o r :   # 8 8 8 ; 
         m a r g i n - r i g h t :   8 p x ; 
 } 
 
 / *   M o d a l   O v e r l a y   -   F i x e d   C e n t e r i n g   * / 
 
 . m o d a l - o v e r l a y   { 
 
         d i s p l a y :   n o n e ; 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
 
         z - i n d e x :   1 0 0 0 ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . m o d a l - o v e r l a y [ s t y l e * = ' d i s p l a y :   f l e x ' ]   { 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   M o d a l   C o n t a i n e r   * / 
 
 . m o d a l - c o n t a i n e r   { 
 
         b a c k g r o u n d :   # 2 a 2 a 2 a ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
         m a x - w i d t h :   5 0 0 p x ; 
 
         w i d t h :   9 0 % ; 
 
         m a x - h e i g h t :   9 0 v h ; 
 
         o v e r f l o w - y :   a u t o ; 
 
         a n i m a t i o n :   m o d a l S l i d e I n   0 . 3 s   e a s e - o u t ; 
 
         m a r g i n :   0 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 @ k e y f r a m e s   m o d a l S l i d e I n   { 
 
         f r o m   { 
 
                 o p a c i t y :   0 ; 
 
                 t r a n s f o r m :   t r a n s l a t e Y ( - 2 0 p x )   s c a l e ( 0 . 9 5 ) ; 
 
         } 
 
         t o   { 
 
                 o p a c i t y :   1 ; 
 
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 )   s c a l e ( 1 ) ; 
 
         } 
 
 } 
 
 
 
 / *   M o d a l   H e a d e r   * / 
 
 . m o d a l - h e a d e r   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         p a d d i n g :   2 0 p x   2 4 p x ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # 3 a 3 a 3 a ; 
 
 } 
 
 
 
 . m o d a l - t i t l e   { 
 
         m a r g i n :   0 ; 
 
         f o n t - s i z e :   1 8 p x ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c o l o r :   # f f f f f f ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
 } 
 
 
 
 . m o d a l - c l o s e   { 
 
         b a c k g r o u n d :   n o n e ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   # 8 8 8 ; 
 
         f o n t - s i z e :   1 8 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         p a d d i n g :   4 p x ; 
 
         b o r d e r - r a d i u s :   4 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . m o d a l - c l o s e : h o v e r   { 
 
         c o l o r :   # f f f ; 
 
         b a c k g r o u n d :   # 3 a 3 a 3 a ; 
 
 } 
 
 
 
 / *   M o d a l   B o d y   * / 
 
 . m o d a l - b o d y   { 
 
         p a d d i n g :   2 4 p x ; 
 
 } 
 
 
 
 / *   M o d a l   F o o t e r   * / 
 
 . m o d a l - f o o t e r   { 
 
         d i s p l a y :   f l e x ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
         g a p :   1 2 p x ; 
 
         p a d d i n g :   2 0 p x   2 4 p x ; 
 
         b o r d e r - t o p :   1 p x   s o l i d   # 3 a 3 a 3 a ; 
 
 } 
 
 
 
 / *   F o r m   G r o u p s   * / 
 
 . f o r m - g r o u p   { 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
 } 
 
 
 
 . f o r m - l a b e l   { 
 
         d i s p l a y :   b l o c k ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
 } 
 
 
 
 . f o r m - h e l p - t e x t   { 
 
         f o n t - s i z e :   1 2 p x ; 
 
         c o l o r :   # 8 8 8 ; 
 
         f o n t - w e i g h t :   n o r m a l ; 
 
         m a r g i n - l e f t :   2 0 p x ; 
 
 } 
 
 
 
 . f o r m - i n p u t   { 
 
         w i d t h :   1 0 0 % ; 
 
         p a d d i n g :   1 2 p x   1 6 p x ; 
 
         b o r d e r :   1 p x   s o l i d   # 4 a 4 a 4 a ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 
 } 
 
 
 
 . f o r m - i n p u t : f o c u s   { 
 
         o u t l i n e :   n o n e ; 
 
         b o r d e r - c o l o r :   # 0 0 7 a c c ; 
 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 0 ,   1 2 2 ,   2 0 4 ,   0 . 1 ) ; 
 
 } 
 
 
 
 / *   C o n d i t i o n s   E d i t o r   * / 
 
 . c o n d i t i o n s - e d i t o r   { 
 
         m a r g i n - t o p :   8 p x ; 
 
 } 
 
 
 
 . c o n d i t i o n s - l i s t   { 
 
         m a r g i n - b o t t o m :   1 2 p x ; 
 
 } 
 
 
 
 . c o n d i t i o n - i t e m   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   8 p x ; 
 
         m a r g i n - b o t t o m :   8 p x ; 
 
 } 
 
 
 
 . c o n d i t i o n - i n p u t   { 
 
         f l e x :   1 ; 
 
         p a d d i n g :   1 0 p x   1 2 p x ; 
 
         b o r d e r :   1 p x   s o l i d   # 4 a 4 a 4 a ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         b a c k g r o u n d :   # 1 a 1 a 1 a ; 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . c o n d i t i o n - i n p u t : f o c u s   { 
 
         o u t l i n e :   n o n e ; 
 
         b o r d e r - c o l o r :   # 0 0 7 a c c ; 
 
         b o x - s h a d o w :   0   0   0   2 p x   r g b a ( 0 ,   1 2 2 ,   2 0 4 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . c o n d i t i o n - r e m o v e   { 
 
         b a c k g r o u n d :   # d c 3 5 4 5 ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   8 p x   1 0 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   1 2 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . c o n d i t i o n - r e m o v e : h o v e r   { 
 
         b a c k g r o u n d :   # c 8 2 3 3 3 ; 
 
 } 
 
 
 
 . b t n - a d d - c o n d i t i o n   { 
 
         b a c k g r o u n d :   # 2 8 a 7 4 5 ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   8 p x   1 6 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   1 3 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . b t n - a d d - c o n d i t i o n : h o v e r   { 
 
         b a c k g r o u n d :   # 2 1 8 8 3 8 ; 
 
 } 
 
 
 
 / *   B u t t o n s   * / 
 
 . b t n - c a n c e l   { 
 
         b a c k g r o u n d :   # 6 c 7 5 7 d ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   1 0 p x   2 0 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . b t n - c a n c e l : h o v e r   { 
 
         b a c k g r o u n d :   # 5 a 6 2 6 8 ; 
 
 } 
 
 
 
 . b t n - s a v e   { 
 
         b a c k g r o u n d :   # 0 0 7 a c c ; 
 
         b o r d e r :   n o n e ; 
 
         c o l o r :   w h i t e ; 
 
         p a d d i n g :   1 0 p x   2 0 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         c u r s o r :   p o i n t e r ; 
 
         f o n t - s i z e :   1 4 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   6 p x ; 
 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 
 } 
 
 
 
 . b t n - s a v e : h o v e r   { 
 
         b a c k g r o u n d :   # 0 0 5 a 9 e ; 
 
 } 
 
 
 
 / *   F i l e   L i s t   w i t h   S u b f o l d e r   S u p p o r t   * / 
 
 . f o l d e r - h e a d e r   { 
 
         b a c k g r o u n d :   # 3 a 3 a 3 a   ! i m p o r t a n t ; 
 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         c u r s o r :   d e f a u l t   ! i m p o r t a n t ; 
 
         b o r d e r - l e f t :   3 p x   s o l i d   # 0 0 7 a c c ; 
 
 } 
 
 
 
 . f o l d e r - h e a d e r : h o v e r   { 
 
         b a c k g r o u n d :   # 3 a 3 a 3 a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o l d e r - i c o n   { 
 
         c o l o r :   # 0 0 7 a c c ; 
 
         m a r g i n - r i g h t :   8 p x ; 
 
 } 
 
 
 
 . f i l e - i c o n   { 
 
         c o l o r :   # 8 8 8 ; 
 
         m a r g i n - r i g h t :   8 p x ; 
 
 } 
 
 