@tailwind base;
@tailwind components;
@tailwind utilities;

/* Hide scrollbars for all browsers */
.no-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.no-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}

@media (max-width: 1024px) {
  /* 只保留第一个面板，隐藏第二个 */
  .ant-picker-panels > *:nth-child(2) {
    display: none !important;
  }
  /* 让面板宽度自适应 */
  .ant-picker-panels {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 350px !important;
  }
}

/* 自定义日期选择器文字颜色 */
.custom-date-picker .ant-picker-input > input {
  color: #607d8b !important;
}

.custom-date-picker .ant-picker-input > input::placeholder {
  color: #607d8b !important;
}