.rulesList {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #000000;
    flex-wrap: wrap;
}

.rulesList li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.bullet {
    font-size: 30px;
}

.boldText {
    font-weight: 700;
}

.dropzone {
    border: 1.5px dashed #a0a0a0;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.upper_text {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
}

.upper_text .browseLink {
    color: #DB0F0F;
}

.down_text {
    font-size: 12px;
    color: #808080;
}


/* Gallery Styles */
.gallery {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.imageWrapper {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.previewImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deleteButton {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background-color: #ff3b30;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
}

.icon_img {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.icon_img .gallery_icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =================== Media Queries =============== */

@media (min-width:0px) and (max-width:767px) {

    .imageWrapper {
        width: 60px;
        height: 60px;
    }

    .rulesList {
        gap: 8px;
    }
}

@media (min-width:768px) and (max-width:991px) {

    .imageWrapper {
        width: 60px;
        height: 60px;
    }

    .rulesList {
        gap: 8px;
    }
}