.hide {
    display: none;
}

[disabled] .hide {
    display: initial;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.table {
    margin-bottom: 0px;
}

.table td {
    vertical-align: middle;
}

.social-container {
    display: flex;
    padding: .75rem 1rem;
    align-items: center;
}

.social-user-icon {
    display: flex;
    width: 40px;
    height: 40px;
}

.social-user-icon img {
    width: 40px;
    height: 40px;
    border-radius: 30px;
}

.social-textarea {
    flex: 1;
    padding-left: 15px;
}

.social-post {
    border-bottom: 1px solid var(--bs-border-color);
}

.social-comments {
    padding-left: 30px;
}

.social-reply {
    border-top: 1px solid var(--bs-border-color);
}

.toasts-container {
    z-index: 999;
}

.messenger-text-container {
    display: flex;
    width: 100%;
    align-items: center;
    /* Align items vertically */
    gap: 5px;
    /* Add spacing between items */
}

.messenger-text-col.fixed-width {
    width: 35px;
    min-width: 35px;
    /* Ensure it never shrinks */
    flex: 0 0 35px;
    /* Prevent growing or shrinking */
    text-align: center;
}

.messenger-text-col {
    flex: 1;
}

.messenger-text-col textarea {
    width: 100%;
    resize: none;
    height: 20px;
    overflow: hidden;
    border-radius: 8px;
    font-size: 14px;
}

.messenger-content-body [data-scrollbar='true'] {
    overflow-x: auto !important;
}