.social_reporting .social-reporting-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

.social_reporting .social-reporting-left h3,
.social_reporting .social-reporting-right h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 28px;
}

.social_reporting .company-info-item {
    margin-bottom: 28px;
}

.social_reporting .company-info-item .title {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin-bottom: 5px;
}

.social_reporting .company-info-item .value {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
}

.social_reporting .social-reporting-form {
    background: #fff;
    padding: 28px 24px;
    border-radius: 8px;
}

.social_reporting .social-reporting-form .form-group {
    margin-bottom: 24px;
}

.social_reporting .social-reporting-form label {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.social_reporting .required {
    color: #ff4d4f;
}

.social_reporting .social-reporting-form .form-control {
    border: 0;
    border-bottom: 1px solid #aaa;
    border-radius: 0;
    padding: 8px 0;
    height: 42px;
    box-shadow: none;
    font-size: 16px;
}

.social_reporting .social-reporting-form textarea.form-control {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 12px;
    height: 115px;
    resize: vertical;
}

.social_reporting .social-reporting-form .form-control:focus {
    border-color: #111;
    box-shadow: none;
}

.social_reporting .social-reporting-form .form-control::placeholder {
    color: #b7bdc5;
}

.social_reporting .form-error {
    display: block;
    margin-top: 6px;
    color: #dc3545;
    font-size: 13px;
}

.social_reporting .input-error {
    border-color: #dc3545 !important;
}

.social_reporting .input-success {
    border-color: #28a745 !important;
}

/* Upload */
.social_reporting .upload-wrapper {
    margin-top: 5px;
}

.social_reporting .btn-add-image {
    display: inline-block;
    color: #007bff;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
}

.social_reporting .btn-add-image:hover {
    text-decoration: underline;
}

.social_reporting .image-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.social_reporting .image-preview-item {
    position: relative;
    width: 90px;
    height: 90px;
}

.social_reporting .image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.social_reporting .remove-image {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    border: 0;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.social_reporting .btn-submit {
    min-width: 140px;
    height: 40px;
    background: #000;
    border: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.social_reporting .btn-submit:hover {
    background: #222;
}

@media (max-width: 767.98px) {

    .social_reporting .social-reporting-wrapper {
        padding: 15px;
    }

    .social_reporting .social-reporting-left,
    .social_reporting .social-reporting-right {
        margin-bottom: 25px;
    }

    .social_reporting .social-reporting-left h3,
    .social_reporting .social-reporting-right h3 {
        font-size: 20px;
    }

    .social_reporting .social-reporting-form {
        padding: 20px 15px;
    }
}




.socialReportingSuccessModal .social-success-modal {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

.socialReportingSuccessModal .social-success-modal .modal-body {
    padding: 35px 30px;
}

.socialReportingSuccessModal .success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #3b812f;
    color: #fff;

    font-size: 32px;
    font-weight: 600;
}

.socialReportingSuccessModal .social-success-modal h4 {
    margin-bottom: 12px;

    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.socialReportingSuccessModal .social-success-modal p {
    margin-bottom: 25px;

    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.socialReportingSuccessModal .btn-success-modal {
    min-width: 110px;
    height: 40px;

    border: 0;
    border-radius: 6px;

    background: #3b812f;
    color: #fff;

    font-size: 14px;
    cursor: pointer;
}

.socialReportingSuccessModal .btn-success-modal:hover {
    background: #327127;
}

.socialReportingSuccessModal  .error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dc3545;
    color: #fff;

    font-size: 32px;
    font-weight: 600;
}

/* =========================
   PAGE LOADING
========================= */

#pageLoading {
    display: none;

    position: fixed;
    z-index: 99999;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.85);

    align-items: center;
    justify-content: center;
}

#pageLoading.active {
    display: flex;
}

.page-loading-content {
    text-align: center;
}

.page-loading-content .spinner-border {
    width: 45px;
    height: 45px;

    color: #3b812f;
}

.page-loading-text {
    margin-top: 15px;

    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.image-preview-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.remove-preview-image {
    position: absolute;
    top: 5px;
    right: 5px;

    width: 24px;
    height: 24px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, .7);
    color: #fff;

    font-size: 18px;
    line-height: 22px;

    cursor: pointer;
}

.remove-preview-image:hover {
    background: #dc3545;
}

.image-preview-name {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    padding: 4px 5px;

    background: rgba(0, 0, 0, .65);
    color: #fff;

    font-size: 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*//don hang*/

.feedback_order .support-wrapper {
    width: 100%;
    padding: 10px 25px;
}

.feedback_order .support-wrapper > .row {
    margin-left: -15px;
    margin-right: -15px;
}


/* =========================
   LEFT
========================= */

.feedback_order .support-info,
.feedback_order .support-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.feedback_order .support-info h3,
.feedback_order .support-form-wrapper h3 {
    margin: 0;
    color: #3b812f;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.feedback_order .support-line {
    height: 2px;
    background: #3b812f;
    margin: 10px 0 26px;
}

.feedback_order .support-item {
    margin-bottom: 20px;
}

.feedback_order .support-item strong {
    display: block;
    color: #222;
    font-size: 15px;
    margin-bottom: 6px;
}

.feedback_order .support-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.feedback_order .support-item .hotline {
    color: #3b812f;
    font-size: 17px;
    font-weight: 600;
}


/* =========================
   FORM
========================= */

.feedback_order .support-form-wrapper .form-group {
    margin-bottom: 18px;
}

.feedback_order .support-form-wrapper label {
    display: block;
    margin-bottom: 7px;
    color: #222;
    font-size: 15px;
    font-weight: 500;
}

.feedback_order .required {
    color: #e00000;
    font-weight: 600;
}

.feedback_order .support-form-wrapper .form-control {
    width: 100%;
    height: 38px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 7px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: none;
}

.feedback_order .support-form-wrapper textarea.form-control {
    height: 86px;
    resize: vertical;
}

.feedback_order .support-form-wrapper .form-control:focus {
    border-color: #3b812f;
    box-shadow: 0 0 0 1px rgba(59, 129, 47, .1);
}

.feedback_order .support-form-wrapper .form-control::placeholder {
    color: #aeb4bd;
}


/* =========================
   ERROR
========================= */

.feedback_order .form-error {
    display: none;
    min-height: 18px;
    margin-top: 4px;
    color: #dc3545;
    font-size: 13px;
}

.feedback_order .input-error {
    border-color: #dc3545 !important;
}

.feedback_order .input-success {
    border-color: #28a745 !important;
}


/* =========================
   UPLOAD
========================= */

.feedback_order .upload-box {
    min-height: 118px;
    border: 2px dashed #3b812f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.feedback_order .upload-label {
    width: 100%;
    height: 100%;
    min-height: 114px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    cursor: pointer;
    color: #3b812f !important;
}

.feedback_order .upload-label span {
    color: #3b812f;
    font-size: 15px;
}

.feedback_order .upload-box:hover {
    background: #f8fbf7;
}


/* =========================
   PREVIEW
========================= */

.feedback_order .preview-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.feedback_order .preview-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.feedback_order preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}


/* =========================
   BUTTON
========================= */

.feedback_order .btn-submit {
    width: 100%;
    height: 41px;
    border: 0;
    border-radius: 7px;
    background: #3b812f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.feedback_order .btn-submit:hover {
    background: #327127;
}

.feedback_order .btn-submit:focus {
    outline: none;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767.98px) {

    .feedback_order .support-wrapper {
        padding: 10px 15px;
    }

    .feedback_order .support-info,
    .feedback_order .support-form-wrapper {
        padding: 20px;
        border-radius: 10px;
    }

    .feedback_order .support-info {
        margin-bottom: 20px;
    }

    .feedback_order .support-info h3,
    .feedback_order .support-form-wrapper h3 {
        font-size: 18px;
    }

    .feedback_order .support-item {
        margin-bottom: 16px;
    }

    .feedback_order .support-form-wrapper .form-group {
        margin-bottom: 15px;
    }

}
/*//danh sahc*/
.list_social_reporting .social-reporting-list {
    width: 100%;
}

/* Mô tả phía trên */
.list_social_reporting .social-reporting-description {
    background: #f3f6fc;
    color: #4d7cff;
    text-align: center;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

/* Table */
.list_social_reporting .social-reporting-table {
    width: 100%;
    margin-bottom: 0;
    border: 1px solid #e1e5eb;
}

.list_social_reporting .social-reporting-table thead th {
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    height: 46px;
    white-space: nowrap;
    border-color: #e1e5eb;
}

.list_social_reporting .social-reporting-table tbody td {
    font-size: 14px;
    color: #555;
    vertical-align: middle;
    padding: 14px 12px;
    border-color: #e1e5eb;
}

.list_social_reporting .social-reporting-table tbody tr:hover {
    background: #fafafa;
}

/* Chiều rộng các cột */
.list_social_reporting .social-reporting-table .col-date {
    width: 16%;
}

.list_social_reporting .social-reporting-table .col-name {
    width: 30%;
}

.social-reporting-table .col-number {
    width: 32%;
}

.list_social_reporting .social-reporting-table .col-content {
    width: 22%;
}

/* Nội dung */
.list_social_reporting .social-reporting-table tbody td:last-child {
    max-width: 400px;
    word-break: break-word;
    white-space: normal;
}

/* Không có dữ liệu */
.list_social_reporting .social-reporting-table .empty-data {
    border: 0;
    height: 330px;
    text-align: center;
    vertical-align: middle;
}

.list_social_reporting .empty-data-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

.list_social_reporting .empty-data-wrapper img {
    width: 230px;
    max-width: 100%;
    margin-bottom: 8px;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 991.98px) {

    .list_social_reporting .social-reporting-description {
        padding: 12px 15px;
        font-size: 13px;
    }

    .list_social_reporting .social-reporting-table {
        min-width: 800px;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767.98px) {

    .list_social_reporting .social-reporting-description {
        margin-bottom: 15px;
        padding: 12px;
        font-size: 13px;
        text-align: left;
    }

    /*
     * Cho table rộng tối thiểu để không
     * làm các cột bị ép quá nhỏ.
     */
    .list_social_reporting  .social-reporting-table {
        min-width: 750px;
    }

    .list_social_reporting .social-reporting-table thead th {
        font-size: 13px;
        height: 42px;
    }

    .list_social_reporting .social-reporting-table tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }

    .list_social_reporting .social-reporting-table .col-date {
        width: 130px;
    }

    .list_social_reporting .social-reporting-table .col-name {
        width: 220px;
    }

    .list_social_reporting .social-reporting-table .col-number {
        width: 230px;
    }

    .list_social_reporting .social-reporting-table .col-content {
        width: 250px;
    }

    .list_social_reporting .social-reporting-table .empty-data {
        height: 280px;
    }

    .list_social_reporting .empty-data-wrapper img {
        width: 180px;
    }

}
/* =========================================================
   SOCIAL REPORTING LIST
========================================================= */

.list_social_reporting .social-reporting-list {
    padding-top: 30px;
    padding-bottom: 50px;
}


/* =========================================================
   HEADER
========================================================= */

.list_social_reporting .social-reporting-header {
    margin-bottom: 20px;
}

.list_social_reporting .social-reporting-header h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #222;
}

.list_social_reporting .social-reporting-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}


/* =========================================================
   TOTAL
========================================================= */

.list_social_reporting .social-reporting-total {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.list_social_reporting .social-reporting-total strong {
    color: #333;
}


/* =========================================================
   TABLE
========================================================= */

.list_social_reporting .social-reporting-table {
    margin-bottom: 0;
    background: #fff;
}

.list_social_reporting .social-reporting-table thead th {
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;

    background: #f5f5f5;
    color: #333;

    font-size: 13px;
    font-weight: 600;
}

.list_social_reporting .social-reporting-table tbody td {
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   COLUMN WIDTH
========================================================= */

.list_social_reporting .social-reporting-table .col-date {
    width: 120px;
}

.list_social_reporting .social-reporting-table .col-name {
    width: 220px;
}

.list_social_reporting .social-reporting-table .col-number {
    width: 180px;
}

.list_social_reporting .social-reporting-table .col-email {
    width: 200px;
}

.list_social_reporting .social-reporting-table .col-content {
    min-width: 300px;
}

.list_social_reporting .social-reporting-table .col-image {
    width: 100px;
    text-align: center;
}


/* =========================================================
   ORGANIZATION NAME
========================================================= */

.list_social_reporting .social-name {
    font-weight: 500;
    color: #222;
}


/* =========================================================
   CONTENT
========================================================= */

.list_social_reporting .social-content {
    max-width: 450px;
    word-break: break-word;
}


/* =========================================================
   EMAIL
========================================================= */

.list_social_reporting .social-reporting-table a {
    color: #2673c9;
    word-break: break-word;
}


/* =========================================================
   IMAGE
========================================================= */

.list_social_reporting .social-image-count {
    text-align: center;
    white-space: nowrap;
    color: #555;
}

.list_social_reporting .image-icon {
    margin-right: 3px;
}


/* =========================================================
   EMPTY DATA
========================================================= */

.list_social_reporting .empty-data {
    padding: 50px 20px !important;
    text-align: center;
}

.list_social_reporting .empty-data-wrapper {
    color: #888;
}

.list_social_reporting .empty-data-wrapper img {
    display: block;
    width: 100px;
    max-width: 100%;
    margin: 0 auto 15px;
}


/* =========================================================
   PAGINATION
========================================================= */

.list_social_reporting .social-reporting-pagination {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.list_social_reporting .social-reporting-pagination .pagination {
    margin-bottom: 0;
}
.list_social_reporting  .social-reporting-list
{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 15px;
}