.upload-area {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin: 10px;
}

.upload-area:hover {
    background-color: #f9f9f9;
}

input, button {
    margin: 10px 0;
}

button {
    background-color: #008bff; 
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #008bff; 
}
input[type="text"], input[type="file"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: calc(100% - 22px);
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

input[type="text"]:focus, input[type="file"]:focus {
    outline: none;
    border-color: #0057ff;
    box-shadow: 0 0 5px #0057ff;
}
#preview {
    border: 1px solid #ddd; 
    padding: 10px;
    margin-top: 20px;
}

#preview div {
    border-bottom: 1px solid #eee; 
    padding-bottom: 10px;
    margin-bottom: 10px;
}

#preview img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.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.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
