@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  /* Định dạng toàn bộ nền trang theo tone màu di sản */
  body {
    @apply bg-[#F9F6F0] text-[#2C2523] font-sans overflow-hidden;
  }
}

@layer components {
  /* Hiệu ứng mờ dần khi chuyển Tab */
  .animate-fade-in {
    animation: fadeIn 0.4s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Định dạng thanh cuộn (Scrollbar) cho chuyên nghiệp */
  .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
  }
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #D4AF37;
    border-radius: 10px;
  }
  .custom-scrollbar::-webkit-scrollbar-track {
    background: #e5e5e5;
  }
}