/* GENERAL PAGE STYLE */

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
}


/* MAIN CONTAINER */

.container {
    max-width: 480px;
    margin: 35px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #333;
    font-size: 26px;
}


/* UPLOAD BOX */

.upload-box {
    border: 2px dashed #6a0dad;
    background: #faf5ff;
    padding: 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    display: block;
}

.upload-box:hover {
    background: #f4e8ff;
}

#file-input {
    display: none;
}


/* PREVIEW IMAGE */

#preview {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    display: none;
}


/* REMOVE BG BUTTON */

#remove-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #8e44ad;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

#remove-btn:hover {
    background: #732d91;
}


/* RESULT IMAGE */

#result-img {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    display: none;
}


/* DOWNLOAD BUTTON */

#download {
    display: none;
    margin-top: 15px;
    padding: 12px 16px;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

#download:hover {
    background: #1e8c4d;
}