/* VMPFence Setup Wizard Styles */

.vmpfence-setup-wizard {
    background: #f1f1f1;
    margin: 20px 0 0 -20px;
    padding: 0;
}

.vmpfence-setup-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    padding: 40px;
    margin-top: 40px;
    border-radius: 4px;
}

.vmpfence-setup-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
}

.vmpfence-setup-header h1 {
    color: #23282d;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vmpfence-setup-header .description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.vmpfence-setup-content {
    margin-bottom: 40px;
}

.vmpfence-setup-step h2 {
    color: #23282d;
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.vmpfence-setup-option {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 20px;
}

.vmpfence-setup-option-header {
    margin-bottom: 15px;
}

.vmpfence-setup-option-header label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.vmpfence-setup-option-header input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.vmpfence-setup-option-description {
    margin-left: 30px;
}

.vmpfence-setup-option-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.vmpfence-privacy-info {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.vmpfence-privacy-info h4 {
    color: #23282d;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.vmpfence-privacy-info ul {
    margin: 0 0 15px 20px;
    color: #555;
}

.vmpfence-privacy-info li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.vmpfence-privacy-links {
    margin: 15px 0 0 0;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.vmpfence-privacy-links a {
    color: #0073aa;
    text-decoration: none;
}

.vmpfence-privacy-links a:hover {
    text-decoration: underline;
}

.vmpfence-recommendation {
    background: #e7f5fe;
    border: 1px solid #b8ddf2;
    border-radius: 4px;
    padding: 15px;
    margin-top: 20px;
}

.vmpfence-recommendation p {
    margin: 0;
    color: #0073aa;
}

.vmpfence-setup-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.vmpfence-setup-actions .button-large {
    padding: 12px 30px;
    font-size: 16px;
    height: auto;
    line-height: 1.4;
}

.vmpfence-setup-actions .description {
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

.vmpfence-setup-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    color: #666;
}

.vmpfence-setup-footer .description {
    margin: 0;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .vmpfence-setup-container {
        margin: 20px;
        padding: 20px;
    }
    
    .vmpfence-setup-header h1 {
        font-size: 24px;
    }
    
    .vmpfence-setup-option {
        padding: 15px;
    }
    
    .vmpfence-setup-option-description {
        margin-left: 0;
        margin-top: 15px;
    }
}