body {
    font-family: Arial, sans-serif;
    margin-top: 60px;
    background: #f8f9fa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.drop-area {
    border: 2px dashed #aaa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: white;
    margin-bottom: 10px;
}

#preview-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#uploadBtn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    width: 100%;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

#uploadBtn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Style for width and height inputs */
.size-inputs {
    display: flex;
    gap: 20px;
}

.size-inputs div {
    width: 50%;
}

.size-inputs input {
    width: 90%;
    padding: 5px;
    margin-left: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.size-inputs label {
    font-size: 14px;
}

/* Small preview beside Upload button */
#uploaded-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#uploaded-preview img {
    height: 50px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#warning {
    color: #721c24;
    background: #f8d7da;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: none;
}