/* Modern Create Server Page - Version 2 */

/* Main Container */
.create-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Setup mode toggle */
.create-mode-toggle {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.create-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.create-mode-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.create-mode-btn.active {
    background: rgba(59, 130, 246, 0.18);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.35);
}

.create-mode-btn i {
    color: rgba(255, 255, 255, 0.8);
}

.create-mode-btn.active i {
    color: #ffffff;
}

/* Predefined projects */
.project-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.project-category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-category-tab:hover {
    border-color: rgba(102, 126, 234, 0.35);
    color: #ffffff;
}

.project-category-tab.active {
    border-color: rgba(102, 126, 234, 0.55);
    background: rgba(102, 126, 234, 0.12);
    color: #ffffff;
}

.project-category-tab i {
    color: #667eea;
}

.project-category-panel {
    display: none;
}

.project-category-panel.active {
    display: block;
}

.project-category-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.predefined-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.predefined-project-card {
    background: rgba(18, 24, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}

.predefined-project-card:hover {
    background: rgba(22, 28, 38, 1);
    border-color: rgba(255, 255, 255, 0.12);
}

.predefined-project-card.is-selected {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(22, 28, 38, 1);
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.project-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.project-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.project-card-badge {
    background: #3b82f6;
    color: #ffffff;
    border: 0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.project-card-stars {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.project-card-stars i {
    color: #fbbf24;
}

.project-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.project-card-description {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    flex: 1;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
}

.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.project-tech-pill {
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(82, 130, 255, 0.1);
    border: 1px solid rgba(82, 130, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-docs-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.project-docs-link:hover {
    color: #fff;
}

.project-setup-note {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.52);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.project-setup-note i {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
    flex-shrink: 0;
}

.predefined-projects-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.55);
}

.predefined-projects-empty i {
    font-size: 2rem;
    color: rgba(102, 126, 234, 0.5);
    margin-bottom: 12px;
}

/* Page Header - Now using standard page header from dash_essentials.css */

/* Form Sections */
.create-section {
    background: #00000022;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: border-color 0.2s ease;
}

.create-section:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #667eea;
    font-size: 1.2rem;
}

.section-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form Inputs */
.input-group {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modern-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modern-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Name Input Wrapper */
.name-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.random-name-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0px 2px 8px rgba(102, 126, 234, 0.3);
}

.random-name-btn:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
    transform: translateY(-1px);
    box-shadow: 0px 4px 12px rgba(102, 126, 234, 0.4);
}

.random-name-btn:active {
    transform: translateY(0);
    box-shadow: 0px 2px 8px rgba(102, 126, 234, 0.3);
}

.random-name-btn i {
    font-size: 0.9rem;
    color: white !important;
}

.random-name-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Server Type Selection */
.server-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.server-type-card {
    background: #00000022;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-type-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.server-type-card.is-selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Premium plan specific styling */
.server-type-card[onclick*="store"]:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.type-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.type-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.type-badge {
    background: #04060D;
    color: rgb(80, 207, 128);
    border: 1px solid rgb(80, 207, 128);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0px 0px 2px rgba(80, 207, 128, 0.3);
}

.type-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.type-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.type-stats i {
    color: #667eea;
}

/* Server Options Grid */
.server-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.server-option-card {
    background: #00000022;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 15px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    width: 100%;
    height: auto;
}

.server-option-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.server-option-card.is-selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.option-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.option-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.option-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Service Information Features - Vertical Timeline Layout */
.info-features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    position: relative;
}

.info-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.info-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.3), rgba(102, 126, 234, 0.1));
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(102, 126, 234, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
    color: rgb(102, 126, 234);
    font-size: 1.1rem;
}

.feature-content {
    flex: 1;
    padding-top: 2px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    transition: color 0.2s ease;
}

.feature-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.info-feature:hover .feature-title {
    color: rgb(102, 126, 234);
}

.info-feature:hover .feature-icon {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(102, 126, 234, 0.2));
    border-color: rgba(102, 126, 234, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-features {
        gap: 0;
    }
    
    .info-feature {
        gap: 15px;
        padding: 15px 0;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

/* Important Notice */
.important-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.important-notice i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.notice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Action Buttons */
.create-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.create-btn {
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.create-btn:hover {
    background: #5a67d8;
}

.create-btn:active {
    transform: translateY(0);
}

.terms-notice {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 20px;
}

/* Loading State */
.create-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.create-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .create-container {
        padding: 15px;
    }
    
    
    .create-section {
        padding: 20px;
    }
    
    .server-type-grid {
        grid-template-columns: 1fr;
    }
    
    .server-options-grid {
        grid-template-columns: 1fr;
    }
    
    .create-actions {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    
    .create-section {
        padding: 15px;
    }
    
    .server-option-card {
        padding: 15px;
    }
    
    .option-icon {
        width: 35px;
        height: 35px;
    }
    
    .option-icon img {
        width: 20px;
        height: 20px;
    }
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

/* ===== LIGHT MODE FOR CREATE SERVER PAGE ===== */

/* Light mode create sections */
.light-theme .create-section {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.light-theme .create-section:hover {
    border-color: rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Light mode section titles and descriptions */
.light-theme .section-title {
    color: #1a1a1a !important;
}

.light-theme .section-title i {
    color: #3b82f6 !important;
}

.light-theme .section-description {
    color: #666 !important;
}

/* Light mode form inputs */
.light-theme .input-label {
    color: #1a1a1a !important;
}

.light-theme .modern-input {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #1a1a1a !important;
}

.light-theme .modern-input:focus {
    border-color: #3b82f6 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.light-theme .modern-input::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
}

/* Light mode server type cards */
.light-theme .server-type-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.light-theme .server-type-card:hover {
    border-color: rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.light-theme .server-type-card.is-selected {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.light-theme .server-type-card[onclick*="store"]:hover {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.03) !important;
}

.light-theme .type-name {
    color: #1a1a1a !important;
}

.light-theme .type-badge {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
    border: 1px solid #22c55e !important;
    box-shadow: 0px 2px 4px rgba(34, 197, 94, 0.2) !important;
}

.light-theme .type-description {
    color: #555 !important;
}

.light-theme .type-stats {
    color: #666 !important;
}

.light-theme .type-stats i {
    color: #3b82f6 !important;
}

/* Light mode server option cards */
.light-theme .server-option-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.light-theme .server-option-card:hover {
    border-color: rgba(0, 0, 0, 0.2) !important;
    background: rgba(0, 0, 0, 0.02) !important;
}

.light-theme .server-option-card.is-selected {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

.light-theme .option-icon {
    background: rgba(0, 0, 0, 0.03) !important;
}

.light-theme .option-title {
    color: #1a1a1a !important;
}

.light-theme .option-description {
    color: #666 !important;
}

/* Light mode feature items */
.light-theme .feature-title {
    color: #1a1a1a !important;
}

.light-theme .info-feature:hover .feature-title {
    color: #3b82f6 !important;
}

.light-theme .feature-description {
    color: #555 !important;
}

.light-theme .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05)) !important;
    border: 2px solid rgba(59, 130, 246, 0.3) !important;
}

.light-theme .feature-icon i {
    color: #3b82f6 !important;
}

.light-theme .info-feature:hover .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.1)) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

.light-theme .info-feature:not(:last-child)::after {
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1)) !important;
}

/* Light mode important notice */
.light-theme .important-notice {
    background: rgba(251, 191, 36, 0.1) !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !important;
}

.light-theme .important-notice i {
    color: #fbbf24 !important;
}

.light-theme .notice-text {
    color: #555 !important;
}

/* Light mode create actions */
.light-theme .create-actions {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.light-theme .terms-notice {
    color: #666 !important;
}

/* Light mode create button */
.light-theme .create-btn {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.light-theme .create-btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
}

/* Wispbyte theme overrides for create page */
.wispbyte-theme .create-section {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.wispbyte-theme .create-section:hover {
    border-color: rgba(102, 126, 234, 0.22) !important;
}

.wispbyte-theme .create-mode-toggle {
    background: rgba(102, 126, 234, 0.08) !important;
    border-color: rgba(102, 126, 234, 0.18) !important;
}

.wispbyte-theme .server-type-card,
.wispbyte-theme .server-option-card,
.wispbyte-theme .predefined-project-card {
    background: rgba(10, 20, 29, 0.65) !important;
}

.wispbyte-theme .predefined-project-card.is-selected {
    background: rgba(102, 126, 234, 0.14) !important;
}

/* Light mode setup toggle + projects */
.light-theme .create-mode-toggle {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.light-theme .create-mode-btn {
    color: #666 !important;
}

.light-theme .create-mode-btn.active {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #1a1a1a !important;
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.35) !important;
}

.light-theme .create-mode-btn i,
.light-theme .project-category-tab i {
    color: #3b82f6 !important;
}

.light-theme .project-category-tab {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #555 !important;
}

.light-theme .project-category-tab.active {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.08) !important;
    color: #1a1a1a !important;
}

.light-theme .project-category-description {
    color: #666 !important;
}

.light-theme .predefined-project-card {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.light-theme .predefined-project-card:hover {
    border-color: rgba(59, 130, 246, 0.35) !important;
    background: rgba(59, 130, 246, 0.03) !important;
}

.light-theme .predefined-project-card.is-selected {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.06) !important;
}

.light-theme .project-card-title {
    color: #1a1a1a !important;
}

.light-theme .project-card-description,
.light-theme .project-setup-note,
.light-theme .project-card-stars {
    color: #666 !important;
}

.light-theme .project-card-icon {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #3b82f6 !important;
}

.light-theme .project-tag {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: #555 !important;
}

.light-theme .project-tech-pill {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #2563eb !important;
}

.light-theme .project-docs-link {
    color: #3b82f6 !important;
}

@media (max-width: 768px) {
    .create-mode-toggle {
        width: 100%;
    }

    .create-mode-btn {
        flex: 1;
        justify-content: center;
    }

    .predefined-projects-grid {
        grid-template-columns: 1fr;
    }
}