body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #333;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.header {
    margin-bottom: 2rem;
}

h1 {
    color: #4a148c;
    margin-bottom: 0.5rem;
}

p {
    color: #6a1b9a;
}

.upload-area {
    margin-bottom: 2rem;
}

.upload-label {
    background-color: #6a1b9a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-label:hover {
    background-color: #4a148c;
}

.hidden-input {
    display: none;
}

.preview-area {
    margin-top: 1rem;
    max-height: 300px;
    overflow: hidden;
}

.preview-image, .result-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-area {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.remove-button, .download-button {
    background-color: #6a1b9a;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-button:hover, .download-button:hover {
    background-color: #4a148c;
}

.result-area {
    margin-top: 2rem;
}