/* Turbo Starter Templates Plugin Styles */
.turbo-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.turbo-btn-primary:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.turbo-wizard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.turbo-wizard-header {
    text-align: center;
    margin-bottom: 40px;
}

.turbo-wizard-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}



/* //transforom from inline// */

.trstemp-wizard-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.trstemp-wizard-header {
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trstemp-wizard-logo img{
    width: 200px;
    
}

.trstemp-wizard-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trstemp-wizard-progress .trstemp-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #f0f0f0;
    color: #999;
    transition: all 0.3s ease;
}

.trstemp-wizard-progress .trstemp-step.completed {
    background: #667eea;
    color: white;
}

.trstemp-wizard-progress .trstemp-step.active {
    background: #667eea;
    color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.trstemp-wizard-progress .trstemp-connector {
    width: 20px;
    height: 2px;
    background: #e5e5e5;
}

.trstemp-wizard-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trstemp-wizard-close:hover {
    background: #e0e0e0;
}

.trstemp-wizard-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.trstemp-wizard-footer {
    padding: 10px 40px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.trstemp-wizard-footer-right {
    display: flex;
    gap: 15px;
}

.trstemp-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trstemp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.trstemp-btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e5e5e5;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trstemp-btn-secondary:hover {
    background: #e9ecef;
}

/* Hide WordPress admin elements */
#wpadminbar,
#adminmenumain,
#wpfooter,
.wrap > h1:first-child {
    display: none !important;
}

body.wp-admin {
    background: #fff !important;
}

#wpbody-content {
    padding: 0 !important;
}

.wrap {
    margin: 0 !important;
}