/* Modern Logo Generator Wizard Styles */

/* Wave background pattern for whole page */
body {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='waves' width='40' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 10 Q10 0 20 10 T40 10' fill='none' stroke='rgba(56,177,251,0.06)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23waves)' /%3E%3C/svg%3E");
    background-attachment: fixed;

    background-color: #f0f8ff !important;
}    

.logo-generator-wizard {
    background: none;
    margin: 20px auto;
    margin-top: calc(80px + 10vh);
    max-width: 1320px;
    overflow: hidden;
    position: relative;
}

/* Full-width progress bar stuck to header */
.wizard-progress {
    position: fixed;
    top: 80px; /* Account for WP admin bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    padding: 0px 0 20px;
    margin: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}


/* Progress container with navigation */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.progress-steps {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

/* Navigation buttons styled like existing wizard-btn */
.wizard-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.wizard-btn:hover {
    background: #005a87;
    color: white;
}

.wizard-btn:disabled,
.wizard-btn[disabled] {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-prev {
    margin-right: auto;
}

.btn-next {
    margin-left: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% - 4px);
    width: 20px;
    height: 2px;
    background: #e0e0e0;
    z-index: -1;
}

.progress-step.step-completed:not(:last-child)::after {
    background: #4CAF50;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eefcff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    border: 2px solid #c4f4ff;
}

.step-label {
    font-size: 10px;
    color: #666;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step:hover .step-number {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.progress-step:hover .step-label {
    color: #667eea;
}

.progress-step.step-active .step-number {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.progress-step.step-active .step-label {
    color: #667eea;
    font-weight: 600;
}

.progress-step.step-completed .step-number {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.progress-step.step-completed .step-label {
    color: #4CAF50;
}

/* Simple CSS progress bar */
.wizard-loading-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(125deg,rgba(211, 118, 173, 1) 0%, rgba(56, 176, 251, 1) 32%, rgba(250, 143, 71, 1) 80%);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.loading-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Update progress bar based on step */
.wizard-progress[data-step="1"] .loading-bar-fill { width: 20% !important; }
.wizard-progress[data-step="2"] .loading-bar-fill { width: 40% !important; }
.wizard-progress[data-step="3"] .loading-bar-fill { width: 60% !important; }
.wizard-progress[data-step="4"] .loading-bar-fill { width: 80% !important; }
.wizard-progress[data-step="5"] .loading-bar-fill { width: 100% !important; }

/* Progress line between steps */
.progress-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Wizard content styling */
.wizard-content {
    margin-top: 7vh;
    background: none;
    min-height: 500px;
    margin-bottom: 3vh;;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wizard-step p {
    color: #7f8c8d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Modern input styling */
.brand-name-input {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
}

.brand-name-input label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.brand-name-input input[type="text"] {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.brand-name-input input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
    background: white;
}

.input-description {
    color: #cdd5d6;
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

/* Modern button styling */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgba(248, 249, 250, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wizard-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.wizard-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.wizard-btn:hover::before {
    left: 100%;
}

.btn-prev {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #825CFF;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
    border: 1px solid #825CFF;
}

.btn-prev:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
}

.btn-next {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-next:disabled,
.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Generate more logos button styling */
#generate-more-logos-new, .load-more-container button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin: 30px auto;
    display: block;
}

#generate-more-logos-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

#generate-more-logos-new:hover::before {
    left: 100%;
}

#generate-more-logos-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Logo grid styling */
.generated-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.logo-item {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-item svg {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-item:hover::before {
    transform: scaleX(1);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.logo-item:hover .logo-edit-overlay {
    opacity: 1;
}

.logo-preview {
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.logo-preview:hover .logo-edit-overlay {
    opacity: 1;
}

.logo-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 15px;
}

.logo-edit-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    opacity: 1;
}

.logo-edit-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.logo-item:hover .logo-preview {
    border-color: #667eea;
}

/* Selection grid styling */
.font-grid,
.icon-grid,
.palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.font-item,
.icon-item,
.palette-item {
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.font-item::before,
.icon-item::before,
.palette-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.font-item:hover::before,
.icon-item:hover::before,
.palette-item:hover::before {
    opacity: 1;
}

.font-item:hover,
.icon-item:hover,
.palette-item:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.font-item.selected,
.icon-item.selected,
.palette-item.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

/* Loading animations */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .wizard-progress {
        top: 0;
    }
    
    .progress-steps {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .wizard-content {
        padding: 40px 20px;
    }
    
    .wizard-step h2 {
        font-size: 2rem;
    }
    
    .generated-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Font style warning message */
    .font-warning {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 20px;
        border-radius: 15px;
        margin: 20px 0;
        text-align: center;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        border: none;
    }

    .font-warning h3 {
        text-align: center;
        margin-bottom: 10px;
        font-size: 1.2rem;
        font-weight: 600;
    }



    /* Color palettes grid */
    .color-palettes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, auto));
        gap: 20px;
        margin: 20px 0;
        justify-content: center; /* center the whole grid */
    }

    /* Selection counter */
    .selection-counter {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        margin: 10px 0;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        border: none;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }
    
    .font-grid,
    .icon-grid,
    .palette-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .wizard-navigation {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .wizard-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Hide debug sidebar for non-admin users */
.debug-sidebar {
    display: none;
}

/* Show debug sidebar only for admin users */
body.admin .debug-sidebar {
    display: block;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 32px;
    right: 0;
    height: calc(100vh - 32px);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 20px 0 0 20px;
}

/* Adjust main content when debug sidebar is visible */
body.admin .logo-generator-wizard {
    margin-right: 320px;
}

@media (max-width: 1400px) {
    body.admin .debug-sidebar {
        display: none;
    }
    
    body.admin .logo-generator-wizard {
        margin-right: auto;
    }
}


.carousel-slide h3{
    text-align: center;;
}

.style-description
{
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.selected-icons-container{
    background: white;
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.03);
    border-radius: 20px !important;
    padding: 40px !important;
    position: relative;
}

#clear-selected-icons
{
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 5px 10px;
    font-size: 13px;
}

.selected-icons-container h3
{
    font-family: "Inter";
    font-size: 24px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.color-wheel
{
    box-shadow: 0 0 10px 10px rgba(0,0,0,0.03);
    border-radius: 100px;
}

.selection-counter 
{
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 200px !important;
    margin-bottom: 50px !important;
    margin-top: -15px !important;
    text-align: center !important;
    background: none !important;
    color: rgb(77, 77, 77) !important;
}


.color-palettes-grid {
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr)) !important;
    gap: 10px !important;;
}

.color-wheel
{
    width: 90px !important;
    height: 90px !important;
}

.palette-section .section-title:after 
{
    display: none;
}

.palette-section .section-title
{
    font-family: "Inter" !important;
    font-size: 24px !important;
    margin-bottom: 20px !important;
}

.color-palette-item:hover, .color-palette-item.selected
{
    background-color: white;
}

.palette-section
{
    margin-bottom: 60px !important;
}

#generate-more-logos-new
{
    margin: 55px auto 70px !important;
    padding: 24px 48px !important;
    border-radius: 100px !important;
}

/* Logo Editor Modal */
.logo-editor-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.logo-editor-modal[style*="display: block"] {
    display: flex !important;
}

.modal-content {
    background: white;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.editor-canvas {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#logo-canvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.editor-controls {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
}

.control-group {
    margin-bottom: 20px;
}

.control-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.color-inputs {
    display: flex;
    gap: 10px;
}

.color-inputs > div {
    flex: 1;
}

.color-input {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.color-label {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.slider-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-control input[type="range"] {
    flex: 1;
}

.slider-value {
    min-width: 50px;
    text-align: right;
    font-weight: 600;
    color: #333;
}

.editor-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.logo-editor-container {
    background: white;
    display: flex;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    justify-content: center;
    position: relative;
}

.logo-editor-container .logo-editor-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-editor-container .logo-editor-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.logo-editor-right {
    width: 350px;
    padding: 30px;
    background: white;
    border-left: 1px solid #e9ecef;
    overflow-y: auto;
}

.logo-editor-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-editor-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.logo-canvas {
    width: 400px;
    height: 300px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    position: relative;
    background: white;
    overflow: hidden;
}

.logo-element {
    position: absolute;
    cursor: move;
    user-select: none;
}

.logo-element.selected {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.logo-element .resize-handle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    cursor: nw-resize;
    bottom: -4px;
    right: -4px;
}

.control-group {
    margin-bottom: 25px;
}

.control-group h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.color-picker-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-picker {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-picker:hover {
    transform: scale(1.05);
}

.slider-group {
    margin-top: 10px;
}

.slider-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.editor-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.editor-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.editor-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.editor-btn.secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.editor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-categories
{
    gap: 5px !important;;
}

.category-box
{
    padding: 14px 28px !important
}