body {
    background-color: #f8f9fa;
    padding: 20px;
}
.container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.form-group {
    margin-bottom: 1rem;
}
.alert {
    margin: 20px 0;
}
/* Gradient ve Başlık Stilleri */
.bg-gradient-primary-to-secondary {
    background: linear-gradient(45deg, #2937f0, #9f1ae2) !important;
}

.gradient-title {
    color: #fff !important;
}

/* İlerleme Noktaları */
.step-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.dot.active {
    background-color: #0d6efd;
}

/* Form ve Input Stilleri */
.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

/* Kart Animasyonları */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Renk Seçici Stilleri */
.color-picker input[type="color"] {
    width: 60px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    height: 38px;
}

.color-picker input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

/* Görsel Önizleme Stilleri */
.img-preview {
    transition: all 0.3s ease;
}

.img-preview:hover {
    transform: scale(1.05);
}

/* Beyaz Logo Önizleme */
.white-logo-preview {
    background: #343a40;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.white-logo-preview img {
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.1));
}

/* Favicon Önizleme */
.favicon-preview {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.favicon-preview img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.favicon-preview small {
    margin-left: 0.5rem;
    color: #6c757d;
}

/* Form Grupları */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    margin-bottom: 0.5rem;
}

/* Yardımcı Öğeler */
.fa-info-circle {
    color: #6c757d;
    cursor: help;
}

/* Dosya Yükleme Alanı */
input[type="file"].form-control {
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
}

/* Yardımcı Metin */
.text-muted {
    font-size: 0.875em;
} 

.preview-img {
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.preview-img:hover {
    transform: scale(1.05);
}

/* Başarılı kurulum kartı için stiller */
.bg-success {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
}

/* Kopyalama butonu için hover efekti */
.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}