.fp-checkbox-container {
  margin-bottom: 10px;
}

/*textarea {
  height: 100%;

  width: 250px;

  min-height: 650px;

  max-height: 650px;
}*/

/*td textarea {
  height: 100px;

  min-height: 100px;
}*/

/*button {
  margin-top: 20px;
}*/
/*
h2 {
  margin-bottom: 20px;
}
*/
#rContainer {
  display: flex;

  flex-direction: column;
}

.keywordContainer {
  display: flex;

  flex-direction: row;
}

/*input[type="button"] {
  width: auto;

  margin-right: 15px;
}*/

#loading {
  display: none;
}

#blogInputs {
  display: flex;

  flex-direction: row;
}

#blogInputs input {
  margin-right: 15px;
}

#newBlog {
  padding: 15px;
}

.err-msg {
  color: red;
}

.empty_data {
  justify-content: space-around;

  display: flex;
}

.pagination {
  text-align: center;

  padding: 20px;

  margin-top: 40px;

  border-top: 1px solid #ccc;

  width: 100%;

  clear: both;

  display: flex;

  justify-content: flex-end;

  flex-direction: row;
}

.pagination .page-numbers {
  display: inline-block;

  padding: 5px 10px;

  margin: 0 5px;

  border: 1px solid #ccc;

  border-radius: 3px;

  background-color: #f9f9f9;
}

.pagination .page-numbers.current {
  background-color: #0073aa;

  color: #fff;
}

#loader {
  display: none;
  position: fixed;
  top: 60%;
  left: 50%;
}

.characterCount {
  display: flex;
  flex-direction: row-reverse;
}

.cancelBtnCss {
  display: flex;
  flex-direction: row;
}

/*.submitBtnCss {
  margin-top: 20px;
  width: auto;
  margin-right: 15px;
}*/
.editor-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.editor {
  flex: 1;
  padding: 20px;
  height: 100%;
}

.preview {
  flex: 1;
  padding: 20px;
  border-left: 1px solid #ccc;
  /* Add a border between editor and preview */
}

.preview img {
  max-width: 100%;
  /* Ensure images don't exceed their container width */
  height: auto;
  /* Maintain aspect ratio */
}

.editor-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.editor-controls select {
  flex: 1;
  margin-right: 10px;
}

.editor-controls button {
  flex-shrink: 0;
}

#editor {
  height: 300px;
}

#ImgEditorTag {
  width: 70px;
  height: 70px;
}

#imgEditor {
  width: 70px;
  height: 70px;
}

/* body {
  font-family: Arial, sans-serif;
  
} */

/*table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 12px;
  text-align: left;
}

table th {
  background-color: #f2f2f2;
}*/

.selected-file img {
  width: 150px;
  /*  height: 50px;*/
  border: 2px solid #000000;
  box-shadow: 3px 3px 4px #c8c8c8;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  text-align: center;
  padding: 15px;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
}

.calendar-day:hover {
  background-color: #e9ecef;
  cursor: pointer;
}

.event-label {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background-color: #007bff;
  color: white;
  padding: 2px 5px;
  font-size: 12px;
  border-radius: 5px;
}

.calendar-header {
  text-align: center;
  margin-bottom: 20px;
}

.hourly-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hourly-event {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.schedule-container {
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 20px;
  /* Adjust the gap between elements as needed */
}

.container {
  margin-top: 30px;
  margin-left: inherit;
}

.form-group {
  margin-bottom: 20px;
}

/*.preview-area {
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 20px;
  background-color: #f9f9f9;
}*/
.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
}

/*label {
  margin-right: 15px;
}*/
.post-details {
  padding-right: 15px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  /* Ensures the items are spaced out */
  gap: 20px;
  /* Adds space between the items */
}

.form-group {
  flex: 1;
  /* Each form field takes equal space */
}

/*izom media */

.file-upload {
  /*display: flex;*/
  justify-content: center;
  margin-bottom: 20px;
}

.file-upload input[type="file"] {
  padding: 10px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.file-upload button {
  /*padding: 10px 20px;*/
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.file-upload button:hover {
  background-color: #0056b3;
}

.file-list {
  display: flex;
  flex-wrap: wrap;
  /*    justify-content: center;*/
  gap: 20px;
}

.file-item {
  background-color: #fff;
  box-shadow: 1px 4px 6px rgb(0 0 0 / 16%);
  /*    text-align: center;*/
  width: 15%;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-grow: 1;
  border: 1px solid #ccc;
  cursor: pointer;
}

.file-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.file-image {
  height: 150px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.file-image img {
  max-width: 300px;
  border-radius: 5px;
  object-fit: cover;
  max-height: 300px;
  height: auto;
  border: 0;
  object-position: center;
}

.file-name {
  font-weight: bold;
  padding: 10px;
  font-size: 13px;
  color: #333;
  word-break: break-all;
  line-height: 1.2;
}

.file-info {
  font-size: 12px;
  color: #555;
  padding: 0 10px 10px;
  /*    display: none;*/
}

.file-actions {
  position: absolute;
  right: 5px;
  top: 5px;
}

.file-actions i {
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}

.file-actions i:hover {
  color: #007bff;
}

.more-options {
  position: absolute;
  top: 37px;
  right: 5px;
  display: none;
  /* Hidden initially */
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 150px;
}

.more-options button {
  width: 100%;
  padding: 5px 10px;
  border: none;
  background-color: #fff;
  text-align: left;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-options button:hover {
  background-color: #f1f1f1;
}

/* Show the file actions (Download and Ellipsis) on hover */
.file-item:hover .file-actions {
  display: flex;
}

/* .file-item:hover .file-actions .delete-icon {
    display: block; 
}*/

.file-item:hover .file-actions .more-options {
  display: block;
}

.file-list .upload-container {
  width: 100%;
}

.modal-body .file-list .file-item {
  width: 18%;
}

/*end izom media*/

/* Event Calender Start */
:root {
  --default-color: #40b6e9;
}

/* Horizontal Tabs */
.nav .nav-item button {
  font-size: 16px;
}

.nav .nav-item.blank {
  flex: 1;
}

.nav-pills li.nav-item {
  margin: 0;
}

.nav .nav-item button.active {
  background-color: transparent;
  color: var(--bs-nav-pills-link-active-bg) !important;
}

.nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--bs-nav-pills-link-active-bg);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

/* Datatable CSS */
.dt-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.dt-paging {
  margin-top: 0 !important;
}

.dt-paging > nav > button {
  background-color: white;
  color: #000;
  border: 1px solid #ccc;
  margin: 0 5px;
  width: 34px;
  height: 34px;
}

.dt-paging > nav > button.current {
  color: white;
  background-color: #0d6efd !important;
  border-color: #0d6efd;
}

.dt-paging > nav > button:hover {
  background-color: #0d6efd !important;
  color: white;
  border-color: #0d6efd;
}

/* Event Calender End */

/* global css */
.form-control,
.dt-container select,
.dt-container input[type="search"] {
  padding: 5px 10px !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0px 1px #dedede !important;
  border-color: #ccc !important;
  max-width: 100% !important;
  font-size: 14px;
}

.form-control:not(textarea),
.dt-container select,
.dt-container input[type="search"] {
  height: 40px;
}

.dt-container select {
  padding-right: 20px !important;
}

.btn:not(.note-btn) {
  border-radius: 0;
  padding: 8px 15px;
  /* box-shadow: 2px 2px 0px 1px #706f6f !important; */
  font-weight: 600;
  /*    text-align: left;*/
  line-height: 1.2;
}

.btn .fa {
  font-size: 16px;
}

.action-btns .btn {
  text-align: left;
}

/*.btn-primary{
  background-color: var(--default-color) !important;
}*/
.col-form-label {
  font-size: 14px;
  font-weight: 500;
  padding-top: 0;
}

.form-container {
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px #e4e4e4;
}

select.form-control {
  padding-right: 25px !important;
}

select.form-control:hover {
  color: #333;
}

/* custom css */
.community-amenities-dropdown .dropdown-toggle {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  line-height: 2;
  -webkit-appearance: none;
  background: #fff
    url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E)
    no-repeat right 5px top 55%;
  background-size: 16px 16px;
  cursor: pointer;

  padding: 5px 10px !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0px 1px #dedede !important;
  border: 1px solid #ccc !important;
  width: 100%;
  text-align: left;
  outline: none;
  padding-right: 20px !important;
  color: #333;
  font-weight: 400;
}

.community-amenities-dropdown .dropdown-toggle:after {
  display: none;
}

.community-amenities-dropdown .dropdown-menu {
  padding: 5px 10px;
  max-height: 300px;
  overflow: auto;
  width: 100%;
  border-radius: 0;
}

.community-amenities-dropdown .dropdown-menu li {
  position: relative;
  padding-left: 25px;
}

.community-amenities-dropdown .dropdown-menu li label {
  font-size: 14px;
  display: block;
  cursor: pointer;
}

.community-amenities-dropdown .dropdown-menu li input[type="checkbox"] {
  position: absolute;
  top: 8px;
  left: 0px;
}

.ql-container.ql-snow {
  height: 200px;
}

.error-msg {
  padding: 10px 20px;
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: top;
}

.loading {
  position: absolute;
  top: 32px;
  left: 130px;
}

.selected-file .file-name {
  display: none;
}

/*#socialPostsTable.dataTable td, #socialPostsTable.dataTable th {
    white-space: nowrap;
}*/
.toaster-msg {
  position: fixed;
  right: 35px;
  top: 20px;
  min-width: 300px;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  animation: hideToaster 3s forwards;
}

@keyframes hideToaster {
  0% {
    opacity: 1;
    visibility: visible;
  }

  80% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.top-15 {
  top: 15px;
}

.single-selection-dropdown .select-item {
  padding: 5px 10px !important;
  font-size: 14px;
  cursor: pointer;
  margin: 0;
  border-bottom: 1px solid #ccc;
}

.single-selection-dropdown .select-item:last-child {
  border-bottom: 0;
}

.single-selection-dropdown .dropdown-menu {
  padding: 0;
}

.single-selection-dropdown .select-item:hover {
  background-color: #f1f1f1;
}

/* */
.form-row {
  display: flex;
  justify-content: space-between;
  /* Ensures the items are spaced out */
  gap: 20px;
  /* Adds space between the items */
}

.calendar-add-post-modal {
  background-color: #fff;
  position: fixed;
  top: 32px;
  right: 0;
  height: calc(100% - 32px);
  z-index: 9;
  width: 600px;
  box-shadow: 0 0 20px #00000030;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#post-modal.active {
  transform: translateX(0);
}

.calendar-add-post-heading {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  height: 60px;
  box-shadow: 0 0 10px #ccc;
}

.calendar-add-post-heading h3 {
  margin: 0 10px 0 0;
}

.calendar-add-post-btns {
  padding: 10px 20px;
  height: 60px;
  box-shadow: 0 0 20px #00000030;
}

.calendar-add-post-fields {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}

.calendar-add-post-fields .col-form-label {
  font-weight: bold;
}

.calendar-add-post-modal-close {
  position: absolute;
  right: 10px;
  top: 13px;
  border: 1px solid #999;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #999;
  border-radius: 50px;
}

.selected-file {
  overflow: hidden;
  max-width: 150px;
  /*    height: 150px;*/
  max-height: 150px;
  position: relative;
  /*    border: 1px solid #ccc;*/
  /* display: flex;
    justify-content: center;
    align-items: center;*/
}

.selected-file > div {
  width: 100%;
  /* height: 100%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.selected-file img {
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  top: 0;
  left: 0;
  height: auto;
  border: 0;
}

.selected-file video {
  width: 100%;
  height: 100%;
}

.prompt-shortcode-details {
  position: fixed;
  top: 32px;
  height: calc(100% - 32px);
  width: 36%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 0 20px #ccc;
}

.prompt-shortcode-list {
  overflow: auto;
  height: calc(100vh - 87px);
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

.prompt-shortcode-heading {
  padding: 15px 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px #ccc;
}

.prompt-shortcode-heading h5 {
  margin: 0;
}

.prompt-shortcode-list strong {
  font-size: 12px;
}

.selected-file-boder {
  border: 1px solid #ccc;
  max-width: 150px;
  height: 150px;
}

select.form-control {
  max-width: 100%;
  /* Ensures it respects column width */
  width: 100%;
  /* Full width of parent div */
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.copy-icon {
  font-size: 12px;
}

.social-post-modal-container {
  position: fixed;
  width: calc(100% - 160px);
  height: calc(100% - 32px);
  top: 0;
  left: 0;
  background-color: #000000a6;
  z-index: 999;
  display: flex;
  justify-content: center;
  margin-left: 160px;
  margin-top: 32px;
}

.social-post-modal-body {
  width: 100%;
  margin: 2%;
  background-color: #fff;
  /*    padding: 20px;*/
  /*    overflow: auto;*/
  max-height: 100%;
  position: relative;
  overflow: hidden;
}

.social-post-modal-close,
.social-post-modal-close:focus {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  outline: none;
  box-shadow: none;
}

.social-post-modal-body .modal-heading {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0px;
  top: 0;
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  z-index: 99;
}

.modal-container {
  display: flex;
  flex-direction: column;
}

.modal-container .modal-footer {
  position: absolute;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 10px #ccc;
  z-index: 99;
  display: flex;
  justify-content: center;
}

.modal-container .modal-form-body {
  overflow: auto;
  height: calc(100vh - 227px);
  margin-top: 65px;
  padding: 20px;
}

.loadingCommon,
.loadingRemix {
  position: absolute;
  z-index: 99;
  background-color: #ffffff80;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-heading .alert {
  margin-bottom: 0;
}

/* Social Media Preview Css */
/*.device-frame {
    width: 350px;
    height: 695px;
    background: url('../images/device-transparent.png') no-repeat center center;
    background-size: contain;
    position: relative;
    margin: 0 auto;
    padding: 70px 44px 45px 41px;
}

.device-view {
    overflow: auto;
    height: 100%;
}

.device-view .device-header {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.device-view .img-full {
    width: 100%;
    border-radius: 8px;
    margin: 0.5rem 0;
    object-fit: cover;
}

.device-view .img-full.square {
    aspect-ratio: 1/1;
}

.device-view .video-preview {
    width: 100%;
    border-radius: 12px;
    margin-top: 0.5rem;
}

.device-view .profile-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.device-view .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.device-view .title {
    font-size: 1rem;
    font-weight: 600;
}

.device-view .url {
    font-size: 0.875rem;
    color: #555;
}

.device-view .text {
    font-size: 0.9rem;
    color: #333;
}

.google .device-header i {
    color: #ea4335;
}

.facebook .device-header i {
    color: #1877f2;
}

.instagram .device-header i {
    color: #e1306c;
}

.linkedin .device-header i {
    color: #0077b5;
}

.tiktok .device-header i {
    color: #000;
}*/

/* facebook post css */
.fb-post {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  width: 470px;
  margin: 0 auto;
  padding: 16px 0;
}

.fb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
}

.fb-profile-logo {
  position: relative;
}

.fb-profile-logo .media-type-icon {
  position: absolute;
  bottom: -10px;
  right: 0px;
  font-size: 16px;
}

.fb-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.fb-user-action {
  position: absolute;
  right: 16px;
  top: 0;
}

.fb-user-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.fb-user-info strong {
  font-weight: bold;
}

.fb-time {
  color: gray;
  font-size: 12px;
}

.fb-content {
  margin-top: 12px;
  font-size: 15px;
  padding: 0 16px;
}

.fb-image {
  margin-top: 12px;
  width: 100%;
  /*      height: 180px;*/
  background: #ccc url("broken-image.png") center center no-repeat;
  background-size: cover;
}

.img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fb-actions {
  /*      margin-top: 10px;*/
  display: flex;
  justify-content: space-around;
  /*      border-top: 1px solid #ccc;*/
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  font-size: 14px;
  color: #65676b;
}

.fb-actions span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fb-comment-section {
  display: flex;
  gap: 10px;
  padding: 16px;
}

.fb-profile .fb-logo {
  width: 30px;
  height: 30px;
}

.fb-comment {
  /*      margin-top: 10px;*/
  background: #f0f2f5;
  border-radius: 12px;
  padding: 10px;
  font-size: 14px;
  width: fit-content;
}

.fb-comment strong {
  display: block;
  color: #050505;
}

.fa-facebook {
  color: #1877f2;
}

/* google post css */
.gbp-post {
  background: #fff;
  width: 470px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.gbp-header {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  position: relative;
}

.gbp-profile-logo {
  position: relative;
}

.gbp-profile-logo .media-type-icon {
  position: absolute;
  bottom: -5px;
  right: 0px;
  font-size: 12px;
}

.gbp-user-action {
  position: absolute;
  right: 16px;
  top: 24px;
}

.gbp-profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.gbp-user-details {
  font-size: 14px;
}

.gbp-user-details strong {
  display: block;
  font-size: 15px;
}

.gbp-post-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.gbp-description {
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #050505;
}

/* linkedin post css */
.post-card {
  background: #fff;
  width: 470px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #ddd;
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  position: relative;
}

.linkedin-profile-logo {
  position: relative;
}

.linkedin-profile-logo .media-type-icon {
  position: absolute;
  bottom: -10px;
  right: 0px;
  font-size: 16px;
}

.user-info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.fa-linkedin {
  color: #0077b5;
}

.user-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.user-details {
  font-size: 14px;
}

.user-details strong {
  display: block;
  font-size: 15px;
}

.timestamp {
  color: gray;
  font-size: 12px;
}

.follow-link {
  font-size: 14px;
  color: #0a66c2;
  font-weight: bold;
  margin-top: 4px;
}

.post-content {
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.5;
}

.post-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
  margin-top: 12px;
}

.post-actions {
  display: flex;
  justify-content: space-around;
  padding: 12px 16px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #5e5e5e;
}

.post-actions span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-section {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f3f2ef;
}

.comment-section img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
}

.comment-text {
  background: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* instagram post css */
.ig-post {
  background: #fff;
  width: 470px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #dbdbdb;
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  position: relative;
}

.ig-profile-logo {
  position: relative;
}

.ig-profile-logo .media-type-icon {
  position: absolute;
  bottom: -10px;
  right: 0px;
  font-size: 16px;
}

.ig-profile-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.ig-user-action {
  position: absolute;
  right: 16px;
  top: 24px;
}

.ig-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-profile span {
  font-weight: bold;
  font-size: 14px;
}

.ig-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.ig-actions {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  justify-content: space-between;
}

.ig-caption {
  padding: 0 16px 12px;
  font-size: 14px;
}

.ig-caption strong {
  font-weight: bold;
  margin-right: 5px;
}

.ig-timestamp {
  padding: 0 16px 12px;
  font-size: 12px;
  color: #999;
}

/* tiktok post css */
.tiktok-post {
  width: 360px;
  height: 640px;
  margin: 20px auto;
  background-color: #000;
  position: relative;
  overflow: hidden;
  color: white;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tiktok-post .img-full {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 16px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-bar {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-icons {
  position: absolute;
  right: 10px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.right-icons .tt-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.tt-logo {
  position: relative;
}

.tt-logo .media-type-icon {
  position: absolute;
  font-size: 8px;
  background-color: #000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #737373;
  right: 0;
  bottom: -10px;
}

.right-icons .icon {
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

.right-icons .icon small {
  font-size: 12px;
  display: block;
}

.bottom-text {
  font-size: 14px;
  margin-top: 10px;
  padding: 0 40px 0 0;
}

.user-name {
  font-weight: bold;
}

.bottom-bar {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*new additional css */
.dataTable {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc !important;
}

.dataTable th,
.dataTable td {
  padding: 0.5rem 0.5rem !important;
}

table.dataTable tbody td table td {
  padding: 0 !important;
}

.dataTables_length,
.dataTables_filter {
  margin-bottom: 10px;
}

.dataTables_length select {
  padding: 5px 20px 5px 10px !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0px 1px #dedede !important;
  border-color: #ccc !important;
  max-width: 100% !important;
  font-size: 14px !important;
}

.dataTables_filter input[type="search"] {
  padding: 5px 10px !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0px 1px #dedede !important;
  border-color: #ccc !important;
  max-width: 100% !important;
  font-size: 14px;
}

.deleteImage {
  margin-top: 3px !important;
}

.colorpicker {
  height: 46px;
  width: 100%;
}
.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffffe3;
  z-index: 9;
  left: 0;
  top: 0;
}
