body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 500px;
}
h1 {
    color: #333;
    margin-bottom: 20px;
}
.upload-area {
    border: 2px dashed #ccc;
    padding: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}
.upload-area:hover {
    border-color: #007bff;
}
#fileInput {
    display: none;
}
.button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #0056b3;
}
#fileName {
    margin-top: 15px;
    font-weight: bold;
    color: #555;
}
#uploadStatus {
    margin-top: 20px;
    font-weight: bold;
}
.success {
    color: green;
}
.error {
    color: red;
}
#imageUrl {
    margin-top: 20px;
    word-break: break-all;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
    display: none;
}
#imageUrl a {
    color: #007bff;
    text-decoration: none;
}
#imageUrl a:hover {
    text-decoration: underline;
} 