<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Core styles for Nepali DateTime Picker
 */

/* Base styles */
.ndtp-date-picker,
.ndtp-datetime-picker,
.ndtp-date-range-picker,
.ndtp-datetime-range-picker {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Input styles */
.ndtp-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ndtp-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ndtp-input:disabled {
  background-color: #f3f4f6;
  opacity: 0.7;
  cursor: not-allowed;
}

/* Calendar container */
.ndtp-calendar-container,
.ndtp-picker-container {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.ndtp-popup {
    position: fixed;
    margin-top: 4px;
    display: none;
    z-index: 1000;
  }
  
  .ndtp-calendar-container {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 1000;
  }

/* Calendar styles */
.ndtp-calendar {
  padding: 12px;
  min-width: 280px;
}

.ndtp-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ndtp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  background-color: transparent;
}

.ndtp-btn:hover {
  background-color: #f3f4f6;
}

.ndtp-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ndtp-btn-prev-month,
.ndtp-btn-next-month {
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 18px;
  color: #6b7280;
}

.ndtp-month-year {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ndtp-month-select,
.ndtp-year-select {
  padding: 4px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}

.ndtp-month-select:focus,
.ndtp-year-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Days header */
.ndtp-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.ndtp-day-header {
  text-align: center;
  font-weight: 600;
  color: #6b7280;
  padding: 4px;
}

/* Days grid */
.ndtp-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.ndtp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  color: #374151;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
}

.ndtp-day:hover:not(.ndtp-disabled) {
  background-color: #f3f4f6;
}

.ndtp-day.ndtp-other-month {
  color: #9ca3af;
}

.ndtp-day.ndtp-disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.ndtp-day.ndtp-today {
  position: relative;
  font-weight: 600;
}

.ndtp-day.ndtp-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3b82f6;
}

.ndtp-day.ndtp-selected {
  background-color: #3b82f6;
  color: #fff;
}

.ndtp-day.ndtp-selected:hover {
  background-color: #2563eb;
}

.ndtp-day.ndtp-highlighted {
  background-color: #fef3c7;
  color: #92400e;
}

/* Time picker styles */
.ndtp-time-picker {
  padding: 12px;
  min-width: 200px;
}

.ndtp-time-display {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.ndtp-time-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ndtp-time-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ndtp-time-input {
  width: 50px;
  text-align: center;
  padding: 4px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
}

.ndtp-time-btn {
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
  color: #6b7280;
}

.ndtp-time-btn:hover {
  background-color: #f3f4f6;
}

.ndtp-time-separator {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
}

.ndtp-ampm-btn {
  width: auto;
  padding: 4px 12px;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* DateTime picker specific styles */
.ndtp-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 12px;
}

.ndtp-tab {
  padding: 8px 16px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.ndtp-tab:hover {
  color: #374151;
}

.ndtp-tab.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.ndtp-tab-content {
  display: none;
}

.ndtp-tab-content.active {
  display: block;
}

.ndtp-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.ndtp-btn-now,
.ndtp-btn-clear,
.ndtp-btn-ok {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.ndtp-btn-now {
  color: #374151;
  border: 1px solid #d1d5db;
}

.ndtp-btn-clear {
  color: #ef4444;
  border: 1px solid #fee2e2;
}

.ndtp-btn-clear:hover {
  background-color: #fee2e2;
}

.ndtp-btn-ok {
  background-color: #3b82f6;
  color: #fff;
  border: 1px solid #3b82f6;
}

.ndtp-btn-ok:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

/* Range picker specific styles */
.ndtp-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ndtp-range-separator {
  color: #6b7280;
  font-weight: 500;
}

.ndtp-day.ndtp-in-range {
  background-color: #eff6ff;
  border-radius: 0;
}

.ndtp-day.ndtp-range-start {
  background-color: #3b82f6;
  color: #fff;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.ndtp-day.ndtp-range-end {
  background-color: #3b82f6;
  color: #fff;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.ndtp-day.ndtp-range-start.ndtp-range-end {
  border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .ndtp-calendar {
    min-width: 260px;
    padding: 8px;
  }
  
  .ndtp-days-grid {
    gap: 1px;
  }
  
  .ndtp-day {
    font-size: 13px;
  }
  
  .ndtp-time-display {
    font-size: 20px;
  }
  
  .ndtp-time-input {
    width: 40px;
    font-size: 16px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .ndtp-date-picker,
  .ndtp-datetime-picker,
  .ndtp-date-range-picker,
  .ndtp-datetime-range-picker {
    color-scheme: dark;
  }
  
  .ndtp-input {
    background-color: #1f2937;
    border-color: #374151;
    color: #f3f4f6;
  }
  
  .ndtp-input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
  }
  
  .ndtp-calendar-container,
  .ndtp-picker-container {
    background-color: #1f2937;
    border-color: #374151;
  }
  
  .ndtp-day {
    color: #e5e7eb;
  }
  
  .ndtp-day:hover:not(.ndtp-disabled) {
    background-color: #374151;
  }
  
  .ndtp-day.ndtp-other-month {
    color: #6b7280;
  }
  
  .ndtp-day.ndtp-disabled {
    color: #4b5563;
  }
  
  .ndtp-day.ndtp-selected {
    background-color: #3b82f6;
    color: #fff;
  }
  
  .ndtp-day.ndtp-today::after {
    background-color: #60a5fa;
  }
  
  .ndtp-time-display {
    color: #f3f4f6;
  }
  
  .ndtp-month-select,
  .ndtp-year-select,
  .ndtp-time-input,
  .ndtp-time-btn {
    background-color: #374151;
    border-color: #4b5563;
    color: #e5e7eb;
  }
  
  .ndtp-tab {
    color: #9ca3af;
  }
  
  .ndtp-tab.active {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
  }
  
  .ndtp-footer {
    border-top-color: #374151;
  }
  
  .ndtp-btn-now {
    color: #e5e7eb;
    border-color: #4b5563;
  }
  
  .ndtp-btn-clear {
    color: #f87171;
    border-color: #7f1d1d;
  }
  
  .ndtp-btn-clear:hover {
    background-color: #7f1d1d;
  }
}

/* Input wrapper for icon support */
.ndtp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .ndtp-input-wrapper .ndtp-input {
    padding-right: 36px; /* Space for icon */
  }
  
  /* Calendar icon */
  .ndtp-calendar-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    transition: color 0.15s ease-in-out;
  }
  
  .ndtp-calendar-icon:hover {
    color: #374151;
  }
  
  /* Editable input styles */
  .ndtp-input:not([readonly]) {
    cursor: text;
    background-color: #fff;
  }
  
  .ndtp-input:not([readonly]):hover {
    border-color: #9ca3af;
  }
  
  .ndtp-input:not([readonly]):focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Invalid input state */
  .ndtp-input-invalid {
    border-color: #ef4444 !important;
  }
  
  .ndtp-input-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
  }
  
  /* Masked input styles */
  .ndtp-input[data-masked="true"] {
    font-family: monospace;
    letter-spacing: 0.05em;
  }
  
  /* Placeholder character style */
  .ndtp-input::placeholder {
    color: #9ca3af;
    opacity: 1;
  }
  
  /* Cursor positioning for masked input */
  .ndtp-input[data-masked="true"]:focus {
    caret-color: #3b82f6;
  }
  
  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    .ndtp-calendar-icon {
      color: #9ca3af;
    }
    
    .ndtp-calendar-icon:hover {
      color: #e5e7eb;
    }
    
    .ndtp-input:not([readonly]) {
      background-color: #374151;
    }
    
    .ndtp-input:not([readonly]):hover {
      border-color: #6b7280;
    }
    
    .ndtp-input-invalid {
      border-color: #dc2626 !important;
    }
    
    .ndtp-input::placeholder {
      color: #6b7280;
    }
  }
  
  /* RTL support */
  [dir="rtl"] .ndtp-input-wrapper .ndtp-input {
    padding-right: 12px;
    padding-left: 36px;
  }
  
  [dir="rtl"] .ndtp-calendar-icon {
    right: auto;
    left: 8px;
  }

/**
 * Additional CSS styles for input field support
 * Add these to your core.css file
 */

/* Input wrapper styling */
.ndtp-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* When the picker is initialized directly on an input */
input.ndtp-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input.ndtp-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* When picker is open, highlight the input */
.ndtp-input-wrapper.active input,
input.ndtp-input.active {
  border-color: #3b82f6;
}

/* Calendar positioning when used with direct inputs */
.ndtp-input-wrapper .ndtp-calendar-container,
.ndtp-input-wrapper .ndtp-picker-container {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  z-index: 1000;
  width: 280px;
}

/* Dark theme support for input elements */
@media (prefers-color-scheme: dark) {
  input.ndtp-input {
    background-color: #1f2937;
    border-color: #374151;
    color: #f3f4f6;
  }
  
  input.ndtp-input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
  }
  
  .ndtp-input-wrapper.active input,
  input.ndtp-input.active {
    border-color: #60a5fa;
  }
}

/* Custom themes */
.ndtp-theme-dark input.ndtp-input {
  background-color: #1f2937;
  border-color: #374151;
  color: #f3f4f6;
}

.ndtp-theme-dark input.ndtp-input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.ndtp-theme-dark .ndtp-input-wrapper.active input,
.ndtp-theme-dark input.ndtp-input.active {
  border-color: #60a5fa;
}

/**
 * Additional CSS styles for input field support
 * Add these to your core.css file
 */

/* Input wrapper styling */
.ndtp-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  /* When the picker is initialized directly on an input */
  input.ndtp-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  input.ndtp-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* When picker is open, highlight the input */
  .ndtp-input-wrapper.active input,
  input.ndtp-input.active {
    border-color: #3b82f6;
  }
  
  /* Calendar positioning when used with direct inputs */
  .ndtp-input-wrapper .ndtp-calendar-container,
  .ndtp-input-wrapper .ndtp-picker-container {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    z-index: 1000;
    width: 280px;
  }
  
  /* Dark theme support for input elements */
  @media (prefers-color-scheme: dark) {
    input.ndtp-input {
      background-color: #1f2937;
      border-color: #374151;
      color: #f3f4f6;
    }
    
    input.ndtp-input:focus {
      border-color: #60a5fa;
      box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    }
    
    .ndtp-input-wrapper.active input,
    input.ndtp-input.active {
      border-color: #60a5fa;
    }
  }
  
  /* Custom themes */
  .ndtp-theme-dark input.ndtp-input {
    background-color: #1f2937;
    border-color: #374151;
    color: #f3f4f6;
  }
  
  .ndtp-theme-dark input.ndtp-input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
  }
  
  .ndtp-theme-dark .ndtp-input-wrapper.active input,
  .ndtp-theme-dark input.ndtp-input.active {
    border-color: #60a5fa;
  }

  /* Date cell (current day) */
.ndtp-day.ndtp-today {
  position: relative;
  font-weight: 600;
  border: 1px solid #3b82f6;
}

.ndtp-day.ndtp-today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3b82f6;
}

/* Date cell (selected) */
.ndtp-day.ndtp-selected {
  background-color: #3b82f6;
  color: #fff;
}

.ndtp-day.ndtp-selected:hover {
  background-color: #2563eb;
}

/* Fix for ndp-selected to match ndtp-selected for backward compatibility */
.ndtp-day.ndp-selected {
  background-color: #3b82f6;
  color: #fff;
}

.ndtp-day.ndp-selected:hover {
  background-color: #2563eb;
}

/* Make sure today's date is clickable and visually distinct */
.ndtp-day.ndtp-today:not(.ndtp-disabled) {
  cursor: pointer;
}

/* Highlighted state for today and selected date combination */
.ndtp-day.ndtp-today.ndtp-selected {
  background-color: #3b82f6;
  color: #fff;
  border: 2px solid #1d4ed8;
}

/**
 * Size variations for calendar
 */

/* Small size */
.ndtp-size-sm .ndtp-calendar {
  font-size: 12px;
  padding: 8px;
}

.ndtp-size-sm .ndtp-day {
  width: 28px;
  height: 28px;
}

.ndtp-size-sm .ndtp-calendar-header {
  margin-bottom: 8px;
}

.ndtp-size-sm .ndtp-btn-prev-month,
.ndtp-size-sm .ndtp-btn-next-month {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.ndtp-size-sm .ndtp-month-select,
.ndtp-size-sm .ndtp-year-select {
  padding: 2px 4px;
  font-size: 12px;
}

.ndtp-size-sm .ndtp-day-header {
  padding: 2px;
  font-size: 11px;
}

.ndtp-size-sm .ndtp-days-grid {
  gap: 1px;
}

.ndtp-size-sm .ndtp-footer {
  padding: 8px;
}

.ndtp-size-sm .ndtp-btn {
  padding: 3px 6px;
  font-size: 12px;
}

/* Medium size (default) */
.ndtp-size-md .ndtp-calendar {
  font-size: 14px;
  padding: 12px;
}

.ndtp-size-md .ndtp-day {
  width: 36px;
  height: 36px;
}

.ndtp-size-md .ndtp-btn-prev-month,
.ndtp-size-md .ndtp-btn-next-month {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

/* Large size */
.ndtp-size-lg .ndtp-calendar {
  font-size: 16px;
  padding: 16px;
}

.ndtp-size-lg .ndtp-day {
  width: 44px;
  height: 44px;
}

.ndtp-size-lg .ndtp-calendar-header {
  margin-bottom: 16px;
}

.ndtp-size-lg .ndtp-btn-prev-month,
.ndtp-size-lg .ndtp-btn-next-month {
  width: 40px;
  height: 40px;
  font-size: 22px;
}

.ndtp-size-lg .ndtp-month-select,
.ndtp-size-lg .ndtp-year-select {
  padding: 6px 12px;
  font-size: 16px;
}

.ndtp-size-lg .ndtp-day-header {
  padding: 6px;
  font-size: 14px;
}

.ndtp-size-lg .ndtp-days-grid {
  gap: 3px;
}

.ndtp-size-lg .ndtp-footer {
  padding: 16px;
}

.ndtp-size-lg .ndtp-btn {
  padding: 8px 12px;
  font-size: 15px;
}

/* Time picker size adjustments */
.ndtp-size-sm .ndtp-time-display {
  font-size: 20px;
  margin-bottom: 12px;
}

.ndtp-size-sm .ndtp-time-input {
  width: 40px;
  font-size: 16px;
}

.ndtp-size-lg .ndtp-time-display {
  font-size: 28px;
  margin-bottom: 20px;
}

.ndtp-size-lg .ndtp-time-input {
  width: 60px;
  font-size: 22px;
}

/* Tab size adjustments */
.ndtp-size-sm .ndtp-tab {
  padding: 6px 12px;
  font-size: 12px;
}

.ndtp-size-lg .ndtp-tab {
  padding: 10px 20px;
  font-size: 16px;
}

/* Date range picker size adjustments */
.ndtp-size-sm .ndtp-calendar-container {
  min-width: 240px;
}

.ndtp-size-md .ndtp-calendar-container {
  min-width: 280px;
}

.ndtp-size-lg .ndtp-calendar-container {
  min-width: 340px;
}

/* Responsive adjustments for size */
@media (max-width: 640px) {
  .ndtp-size-lg .ndtp-calendar {
    font-size: 15px;
    padding: 12px;
  }
  
  .ndtp-size-lg .ndtp-day {
    width: 40px;
    height: 40px;
  }
}
/*# sourceMappingURL=nepali-datetime-picker.css.map */</pre></body></html>