/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
}
.background-remover-container {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
h1 {
    font-size: 24px;
    color: #10a37f;
}
.description {
    margin: 10px 0 20px;
    color: #666;
}
.file-upload {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}
.file-upload input[type="file"] {
    font-size: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload-label {
    display: inline-block;
    padding: 10px 20px;
    background: #10a37f;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}
.file-upload-label:hover {
    background: #0f8a6d;
}
#result img {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
a.download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #10a37f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}
a.download-btn:hover {
    background: #0f8a6d;
}
button.try-again-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff5c5c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
button.try-again-btn:hover {
    background: #e04b4b;
}

.buttons-container {
    display: flex !important;
	align-items: center;
    justify-content: center !important;
    gap: 10px;
    margin-top: 20px;
}

