.file-upload-container {
    width: 100%;
    height: 200px;
    border: 2px dashed #007bff;
    border-radius: 10px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.file-upload-container:hover {
    background-color: #e9f7ff;
}

.file-upload-label {
    font-size: 16px;
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

.file-preview {
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.file-preview img {
    max-width: 100px;
    max-height: 100px;
    margin: 5px;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}
