/**
 * Create Store Flow - Minimal styles (Tailwind for steps)
 * Image cropper modal from components.js
 */
html, body {
    overflow: visible;
    height: auto;
    min-height: 100%;
}

.create-store-app {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    overflow: visible;
}

.create-store-container {
    min-height: 100vh;
    overflow: visible;
}

@media (min-width: 768px) {
    .create-store-container {
        width: 40%;
        min-width: 420px;
        max-width: 672px;
        margin: 0 auto;
    }
}

.create-store-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    color: #666;
}

/* Image Cropper Modal - used by components.js */
.image-cropper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-cropper-modal {
    background: white;
    border-radius: 16px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.image-cropper-modal .btn-secondary {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
}
