

.container-pengaduan {
    padding: 0;
    /* margin-top: 12px; */
}

.filter {
    flex-direction: column;
    gap: 10px;
}

.filter-search {
    width: 100%;
}

.tbody-pengaduan {
    font-size: 12px;
    padding: 2px;
}

.tbody-pengaduan tr {
    background-color: #ffffff; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 12px;
}

/* Styling untuk sel */
.tbody-pengaduan td {
    padding: 10px 16px;
    white-space: nowrap;
}

.tbody-pengaduan tr td:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    overflow: hidden;
}
.tbody-pengaduan tr td:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    overflow: hidden;
}


.ellipsis {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pesan-ellipsis {
    max-width: 300px;     /* atau sesuai kebutuhan, penting agar tidak full lebar */
    width: 300px;
    overflow: hidden;     /* Penting untuk ellipsis */
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sortable {
    cursor: pointer;
    user-select: none;
}

.sortable:hover {
    background-color: #f3f4f6;
}

.chat-mbl {
    padding: 0;
}

.chat-content {
    height: 650px;
    overflow-y: scroll;
    scrollbar-width: none;
}

/* TABLET */
/* @media (min-width: 768px) {
   

} */

/* DESKTOP */
@media (min-width: 1024px) {
    .modal-wrapper {
        margin-top: 0;
    }

    .filter {
        flex-direction: row;
    }

    .filter-search {
        width: 200px;
    }
    .filter-status {
        width: 200px;
    }
    .filter-day {
        width: 200px;
    }
    .tbody-pengaduan tr td {
        padding: 10px;
    }
    .chat-mbl {
        padding: 20px;
    }
    .chat-wrapper {
        margin-top: 50px;
    }
}
.form-add-pengaduan-publish-dropdown {
    position: relative;
    display: inline-block;
}

.form-add-pengaduan-dropdown-arrow {
    margin-left: 4px;
    font-size: 12px;
}