.cv-builder-container {
            display: grid;
            grid-template-columns: 300px 1fr 400px;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            min-height: calc(100vh - 80px);
        }
        
        .cv-sidebar {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .cv-main {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .cv-preview {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .template-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .template-card {
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .template-card:hover,
        .template-card.active {
            border-color: #2563EB;
            background: #F0F9FF;
        }
        
        .form-section {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #E5E7EB;
        }
        
        .form-section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }
        
        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #2563EB;
        }
        
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .add-item-btn {
            background: #F3F4F6;
            border: 2px dashed #9CA3AF;
            border-radius: 8px;
            padding: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #6B7280;
        }
        
        .add-item-btn:hover {
            background: #E5E7EB;
            border-color: #6B7280;
        }
        
        .experience-item,
        .education-item,
        .skill-item {
            background: #F9FAFB;
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .remove-item {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #FEE2E2;
            color: #DC2626;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ai-suggestions {
            background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
            border: 1px solid #93C5FD;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
        }
        
        .ai-suggestion-item {
            background: white;
            border-radius: 6px;
            padding: 0.75rem;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ai-suggestion-item:hover {
            background: #F0F9FF;
        }
        
        .ats-score {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .score-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .score-label {
            opacity: 0.9;
        }
        
        .cv-preview-content {
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            padding: 2rem;
            background: white;
            min-height: 600px;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .preview-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #2563EB;
        }
        
        .preview-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }
        
        .preview-title {
            color: #2563EB;
            font-weight: 500;
        }
        
        .preview-contact {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            font-size: 0.8rem;
            color: #6B7280;
        }
        
        .preview-section {
            margin-bottom: 1.5rem;
        }
        
        .preview-section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2563EB;
            margin-bottom: 0.75rem;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid #E5E7EB;
        }
        
        .preview-item {
            margin-bottom: 1rem;
        }
        
        .preview-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.25rem;
        }
        
        .preview-item-title {
            font-weight: 600;
            color: #111827;
        }
        
        .preview-item-date {
            color: #6B7280;
            font-size: 0.8rem;
        }
        
        .preview-item-company {
            color: #2563EB;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .preview-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .preview-skill {
            background: #EFF6FF;
            color: #2563EB;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        @media (max-width: 1200px) {
            .cv-builder-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .cv-sidebar,
            .cv-preview {
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            .cv-builder-container {
                padding: 1rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .template-grid {
                grid-template-columns: 1fr;
            }
        }