.report-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 ;
    padding: 0;
    z-index: 99293;
    font-weight: 400;
    display: none;
}

.report-modal.active-report {
    display: block;
}

.report-modal-contain {
    width: 100%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 680px;
    background-color: #fff;
    border-radius: 7px;
    z-index: 2;
    box-shadow: 0 6px 36px rgba(11 11 11 / 22%);
}

.moda-report-background {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(11 11 11 / 22%);
}

.report-modal-header {
    border-radius: 7px 7px 0 0;
    padding: 6px 6px 6px 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 12px;
    font-weight: 600;
    font-size: 18px;
}
.report-modal-footer {
    border-radius: 0 0 7px 7px;
    padding: 10px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-gap: 12px;
    font-weight: 500;
    font-size: 16px;
}

.report-modal-header .close-report-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    color: #595959;
    user-select: none;
    cursor: pointer;
}

.report-modal-header .close-report-modal:hover {
    color: #111;
}

.report-modal-header-txt span {
    font-weight: 500;
}

.report-modal-form {
    padding: 12px 16px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input,
textarea,
select {
    width: 100%;
    padding: 8px;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
    box-shadow: none !important;
    line-height: 26px;
}

.seller-file-upload {
    position: relative;
    font-weight: 500;
}

.seller-file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.seller-file-upload {
    background-color: #f8f8f8;
    border: 2px solid #f8f8f8;
    border-radius: 5px;
    line-height: 30px;
    cursor: pointer;
    font-weight: 600;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 222ms ease-in-out;
}

.seller-file-upload:hover {
    color: #007bff;
    border-color: #007bff;
}

.file-upload-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 12px;
}

.image-uploaded {
    position: relative;
    border-radius: 5px;
}

.image-uploaded img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.remove-image {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(153 149 149 / 44%);
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.remove-image:hover {
    background-color: rgba(11 11 11 / 66%);
}

.addmore-image {
    width: 100%;
    display: block;
    position: relative;
    background-color: #f8f8f8;
    border-radius: 5px;
    color: #595959;
    cursor: pointer;
    user-select: none;
    order: 9
}

.addmore-image:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

.addmore-image::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.addmore-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
}

.file-upload-content {
    display: none; /* Ẩn mặc định */
}

.addmore-image.hidden {
    display: none; /* Ẩn khi có đủ 5 ảnh */
}

textarea {
    resize: none;
}

.form-group-inline {
    display: flex;
    gap: var(--gap14);
}

.form-group-inline .form-group {
    flex: 1;
}

.checkbox-group {
    margin-bottom: 10px;
}

.checkbox-group input {
    margin-right: 10px;
}

.button-group {
    display: flex;
    justify-content: flex-end;
    grid-gap: 16px;
}

.report-modal-form {
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
    position: relative;
}

.confirmation-label {
    font-weight: 400;
}

.report-modal .btn {
    padding: var(--gap10) var(--gap14);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.report-modal .btn-primary {
    background-color: #007bff;
    color: white;
}

.report-modal .btn-secondary {
    background-color: #f8f9fa;
    color: #333;
}

@media (max-width: 760px) {
    .report-modal-contain {
        top: auto;
        bottom: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .report-modal-header,
    .report-modal-footer {
        position: sticky;
        background-color: #fff;
        z-index: 2;
        padding-top: 10px;
        padding-bottom: 10px;
        box-shadow: 0 5px 15px rgba(11 11 11 / 11%);
    }

    .report-modal-header {
        top: 0;
    }

    .report-modal-footer {
        bottom: 0;
    }

}