* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.dropzone {
    width: 100%;
    min-height: 400px;
    border: 3px dashed #ccc;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dropzone:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.dropzone.dragover {
    border-color: #007bff;
    background: #e7f3ff;
    transform: scale(1.02);
}

.dropzone-content {
    text-align: center;
    color: #666;
    pointer-events: none;
}

.dropzone-content svg {
    margin-bottom: 16px;
    color: #999;
}

.dropzone-text {
    font-size: 18px;
    font-weight: 500;
}

.preview-container {
    margin-top: 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#previewImage {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.loading {
    color: #007bff;
    font-size: 16px;
    margin-top: 20px;
}

.error {
    color: #dc3545;
    font-size: 16px;
    margin-top: 20px;
    padding: 12px;
    background: #f8d7da;
    border-radius: 8px;
}

