 
/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Disabled state */
.duration-radio.ant-radio-disabled .ant-radio-inner {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
}

.duration-radio.ant-radio-disabled .ant-radio-inner::after {
  background-color: #9ca3af;
}
