
.drop-zone {
    border: 2px dashed #90b2d3;
    border-radius: 8px;
    padding: 20px;
    /*background: #f4f4f4;*/
    background: #5c9fd0;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
}

.upload-container {
    max-width: 660px;
    margin: 0 auto;
    background: #efeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.upload_label {
    max-width: 660px;
    margin: 0 auto;
    background: #efeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0px;
    text-align: center;
 }
.upload-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
}
.file-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}
.file-list li {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.file-preview img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    margin-right: 10px;
    object-fit: cover;
}
/* General styling for the remove button */
.file-list button {
    background-color: #ff4d4d; /* Red background for a delete action */
    color: #fff; /* White text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px 10px; /* Adjust padding for size */
    font-size: 14px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
    margin-left: 10px; /* Add spacing between button and text */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for the remove button */
.file-list button:hover {
    background-color: #d93636; /* Darker red on hover */
}

/* Optional: Focus effect for accessibility */
.file-list button:focus {
    outline: 2px solid #d93636; /* Outline for keyboard focus */
    outline-offset: 2px;
}

#uploadButton {
    margin-top: 20px;
    padding: 10px 20px;
    /*background-color: #00aaff;*/
    background-color:#429AFF;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
#uploadButton:hover {
    background-color: #2ee009;

}
.capture-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 10px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background: #f4f4f4;
    cursor: pointer;
}
.capture-btn span {
    color: #aaa;
}

