/* Right-side modal */
.modal.modal-right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  max-width: 600px;  /* adjust width */
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

/* Slide in when modal opens */
.modal.modal-right.show .modal-dialog {
  transform: translateX(0);
}

/* Full height panel look */
.modal.modal-right .modal-content {
  height: 100%;
  border-radius: 0;
}
.btn-close {
    opacity:1;
}
.file-drop-area {
  border: 2px dashed #6c757d;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  background: #f8f9fa;
  transition: 0.3s;
}

.file-drop-area.dragover {
  background: #e9f2ff;
  border-color: #0d6efd;
}

.file-message {
  margin-top: 10px;
  font-size: 14px;
  color: #6c757d;
}

/* .view-more-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
} */

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.view-more-btn:hover i {
  transform: translateX(6px);
}

/* .card .card-footer {
    border-top: 1px solid var(--border-color) !important;
} */