.script-seller-installation {
    margin: 2em 0;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Başarılı kurulum mesajı stilleri */
.installation-success {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, #f8fff8 0%, #f0f9ff 100%);
    border-radius: 10px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.success-icon {
    margin-bottom: 25px;
}

.success-icon i {
    font-size: 64px;
    color: #28a745;
    animation: pulse 2s infinite;
}

.success-content h3 {
    color: #28a745;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.site-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.site-info p {
    margin: 0;
    color: #333;
}

.site-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-info a:hover {
    color: #004999;
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mevcut progress bar stilleri */
.progress-bar {
    width: 100%;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #2271b1 0%, #135e96 100%);
    transition: width 0.5s ease;
}

#countdown {
    font-size: 24px;
    font-weight: bold;
    color: #2271b1;
}

#start-installation {
    margin: 20px 0;
    padding: 12px 30px;
    font-size: 16px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#start-installation:hover {
    background: #135e96;
    transform: translateY(-1px);
}

#installation-frame {
    margin-top: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

#installation-frame iframe {
    width: 100%;
    height: 500px;
    border: none;
    overflow-y: scroll;
    background: #fff;
}

.installation-completed {
    text-align: center;
    padding: 40px 20px;
    background: #f8fff8;
    border-radius: 5px;
    border: 1px solid #d4ebd4;
}

.success-message {
    color: #28a745;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #28a745;
}

.success-message p {
    font-size: 16px;
    color: #666;
}

/* Elementor icon box stilleri */
.elementor-icon-box-wrapper {
    text-align: center;
    padding: 30px;
}

.elementor-icon-box-icon {
    margin-bottom: 20px;
}

.elementor-icon {
    font-size: 48px;
    color: #28a745;
}

.elementor-icon-box-title {
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.elementor-icon-box-description {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.script-seller-installation-wrapper {
    position: relative;
}

.installation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e0e0e0;
}

.installation-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #2c3338;
    font-weight: 500;
}

.toggle-installation {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    color: #666;
    transition: all 0.3s ease;
}

.toggle-installation:hover {
    color: #2271b1;
}

.toggle-installation .dashicons {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

.installation-success-content {
    transition: all 0.3s ease;
}

.installation-success-content.hidden {
    display: none;
}

.installation-next-steps {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.installation-next-steps h4 {
    color: #2271b1;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.installation-next-steps p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.install-link {
    margin: 20px 0;
    text-align: center;
}

.install-link .button {
    display: inline-block;
    padding: 12px 25px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.install-link .button:hover {
    background: #135e96;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(19, 94, 150, 0.2);
}

.installation-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.thank-you {
    color: #28a745;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
} 