/* Chrome, Edge, Safari */
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Firefox */
body,
html {
  scrollbar-width: none;
}

/* IE */
body,
html {
  -ms-overflow-style: none;
}

.sidebar-wrapper::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Firefox */
.sidebar-wrapper {
  scrollbar-width: none;
}

/* IE / Edge */
.sidebar-wrapper {
  -ms-overflow-style: none;
}

.my-error {
  font-size: 13px;
}

/* Top Confirm Delete Modal */

.delete-confirm-modal .modal-dialog {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.delete-confirm-modal .modal-content {
  border-radius: 18px;
  border: none;
  padding: 10px;
  text-align: center;
  width: 420px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  animation: modalDrop 0.35s ease;
}

.delete-confirm-modal .modal-header {
  border: none;
  justify-content: center;
}

.delete-confirm-modal .modal-title {
  font-weight: 600;
  font-size: 20px;
}

.delete-confirm-modal .modal-body {
  color: #555;
}

.delete-confirm-modal .modal-footer {
  border: none;
  justify-content: center;
  gap: 15px;
}

/* Buttons */

.btn-cancel {
  background: #6c757d;
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
}

.btn-delete {
  background: #e63946;
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
}

/* Drop animation */

@keyframes modalDrop {
  from {
    transform: translateY(-80px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
}

.toast-msg {
  background: #28a745;
  color: #fff;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

.toast-error {
  background: #dc3545;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#cropModal .modal-dialog {
  max-width: 500px;
}

#cropModal .modal-body {
  height: 420px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
}

#crop-image {
  max-width: 100%;
  max-height: 380px;
}

/* circle crop */
.cropper-view-box,
.cropper-face {
  border-radius: 50%;
}

.cropper-modal {
  background: rgba(0, 0, 0, 0.6);
}

.cropper-bg {
  background-image: none !important;
}

.cropper-view-box {
  outline: 3px solid #fff;
}

input.error,
select.error,
textarea.error {
  border: 1px solid red;
  font-size: 5px !important;
}

/* Modal body scroll */
#exampleModal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}

/* Hide scrollbar */
#exampleModal .modal-body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

#exampleModal .modal-body {
  scrollbar-width: none;
  /* Firefox */
}

/* Lable in inputs */

.epx9-floating {
  position: relative;
}

/* Inputs */
.epx9-floating input,
.epx9-floating textarea,
.epx9-floating select {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

/* Label */
.epx9-floating label {
  position: absolute;
  top: 50%;
  left: 10px;
  color: #777;
  font-size: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  background: #fff;
  padding: 0 5px;
  transition: 0.3s ease;
}

/* Focus / Filled effect */
.epx9-floating input:focus + label,
.epx9-floating input:valid + label,
.epx9-floating textarea:focus + label,
.epx9-floating textarea:valid + label,
.epx9-floating select:focus + label,
.epx9-floating select.has-value + label {
  top: -5px;
  left: 15px;
  font-size: 12px;
  color: #4f46e5;
}

/* Focus border */
.epx9-floating input:focus,
.epx9-floating textarea:focus,
.epx9-floating select:focus {
  border-color: #4f46e5;
}

/* Select arrow clean */
.epx9-floating select {
  appearance: none;
  cursor: pointer;
}

/* post properties */

.post-prop-dropdown {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  width: 340px;
  top: 100%;
  z-index: 999;
  display: none;
  border-radius: 6px;

  /* 🔥 scrollbar hide */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

/* Chrome, Edge, Safari */
.post-prop-dropdown::-webkit-scrollbar {
  display: none;
}

.post-prop-dropdown div {
  padding: 10px;
  cursor: pointer;
}

.post-prop-dropdown div:hover {
  background: #f1f1f1;
}

/* My Profile */
.nrx-dropdown {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  width: 380px;
  top: 100%;
  z-index: 999;
  display: none;
  border-radius: 6px;

  /* hide scrollbar */
  scrollbar-width: none;
}

.nrx-dropdown::-webkit-scrollbar {
  display: none;
}

.nrx-item {
  padding: 10px;
  cursor: pointer;
}

.nrx-item:hover {
  background: #f1f1f1;
}

.ads-dropdown {
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  width: 240px;
  top: 100%;
  z-index: 999;
  display: none;
  border-radius: 6px;

  /* hide scrollbar */
  scrollbar-width: none;
}

.ads-dropdown::-webkit-scrollbar {
  display: none;
}

/* terms and condition */
.nrdocu-body {
  margin-top: 100px;
  font-family: "Segoe UI", sans-serif;
}

.nrdocu-wrapper {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 10px;
}

.nrdocu-card {
  position: relative;
  background: #ffffff9a;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ✅ FIXED CENTER WATERMARK */

.nrdocu-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.58; /* thoda light thev */
  z-index: 0;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.nrdocu-watermark img {
  width: 400px;
  max-width: 90%;
}

.nrdocu-content {
  position: relative;
  z-index: 2;
}

.nrdocu-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.nrdocu-subtitle {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-bottom: 35px;
}

.nrdocu-section {
  margin-bottom: 25px;
}

.nrdocu-section h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
  position: relative;
  padding-left: 15px;
}

.nrdocu-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 18px;
  background: #007bff;
  border-radius: 3px;
}

.nrdocu-section p {
  color: #222222;
  line-height: 1.7;
  font-size: 15px;
  padding: 0 0 0 40px;
}

.nrdocu-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.nrdocu-section ul {
  padding-left: 80px;
  margin-top: 8px;
}

.nrdocu-section ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .nrdocu-card {
    padding: 30px 20px;
  }

  .nrdocu-title {
    font-size: 24px;
  }
}
