.dynamicOptions {
    display: none;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    /* Added border for better visibility */
    border-radius: 5px;
    /* Rounded corners */
    overflow: hidden;
    /* Hide overflow */
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.delete-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff4d4d;
    /* Red background for delete button */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    padding: 0;
    width: 20px;
    /* Fixed width for button */
    height: 20px;
    /* Fixed height for button */
    font-size: 14px;
    /* Font size for the button */
}

#fileUploadContainer {
    padding: 40px;
    border: 2px dashed #ccc;
    /* Dashed border for upload area */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center content vertically */
    cursor: pointer;
    /* Pointer cursor for upload area */
}

#fileUploadContainer.drag-over {
    border-color: #164B98;
    /* Change border color on drag over */
    background-color: #f0f8ff;
    /* Light background on drag over */
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tos {
    font-size: 14px;
    font-weight: bold;
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tos {
    font-size: 14px;
    font-weight: bold;
}
