/* Thiết lập Font chữ mặc định */
body {
  font-family: 'Inter', sans-serif;
}

/* Định dạng kiểu chữ serif giống Google Search Title */
.google-font-serif {
  font-family: 'Georgia', 'Playfair Display', serif;
}

/* Tùy chỉnh thanh công cụ của trình soạn thảo Quill giống với WordPress */
.ql-toolbar.ql-snow {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-color: #e2e8f0;
  background-color: #f8fafc;
}

/* Tùy chỉnh khung nhập liệu của trình soạn thảo */
.ql-container.ql-snow {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-color: #e2e8f0;
  min-height: 380px;
  height: auto;
  font-size: 14px;
  line-height: 1.6;
}

/* Custom Scrollbar cho giao diện thanh thoát hơn */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Hiệu ứng chuyển cảnh đẹp cho popup thông báo */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
  transform: translateY(-20px);
}