body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #ff6a00, #ee0979);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
}

.container {
text-align: center;
}

button {
padding: 12px 24px;
font-size: 16px;
background-color: white;
color: #ff6a00;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}

button:hover {
background-color: #ffe0cc;
}

/* Modal Styles */
.modal {
display: none; 
position: fixed; 
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.6);
}

.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 30px;
border: 1px solid #888;
width: 80%;
max-width: 500px;
border-radius: 10px;
text-align: center;
color: #333;
}

.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

#imagePreview img {
margin-top: 20px;
max-width: 100%;
border-radius: 10px;
}