/* Note: output.css is loaded directly in app_shell.html for cache-busting */

/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'),
         local('Roboto-Regular'),
         url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
  }
  
  /* Roboto Medium */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'),
         local('Roboto-Medium'),
         url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../fonts/roboto-medium-webfont.woff') format('woff');
  }
  
  /* Roboto Bold */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'),
         local('Roboto-Bold'),
         url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
  }
  
  /* RobotoSlab Regular */
  @font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto Slab Regular'),
         local('RobotoSlab-Regular'),
         url('../fonts/RobotoSlab-Regular.woff2') format('woff2'),
         url('../fonts/RobotoSlab-Regular.woff') format('woff');
  }
  
  /* RobotoSlab Bold */
  @font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Slab Bold'),
         local('RobotoSlab-Bold'),
         url('../fonts/RobotoSlab-Bold.woff2') format('woff2'),
         url('../fonts/RobotoSlab-Bold.woff') format('woff');
  }
 
 body {
    font-family: 'Roboto', sans-serif; 
    font-size: 16px;
    line-height: 1.6;
 }
 
 h1, h2 {
    font-family: 'Roboto Slab', serif; 
 }
.hidden {
    display: none;
}
.tab-active {
    @apply border-l border-r border-t border-b-0 bg-white;
}
.tab-inactive {
    @apply border-b;
}
input[type="text"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type="text"]::-webkit-inner-spin-button {
    display: none;
}

input[type="text"] {
    -moz-appearance: textfield;
}

/* Toast UI Editor dark mode overrides */
.dark .toastui-editor-contents,
.dark .toastui-editor-ww-container,
.dark .toastui-editor-defaultUI {
    background-color: transparent !important;
}

.dark .toastui-editor-contents h1,
.dark .toastui-editor-contents h2,
.dark .toastui-editor-contents h3,
.dark .toastui-editor-contents h4,
.dark .toastui-editor-contents h5,
.dark .toastui-editor-contents h6 {
    color: #e5e7eb !important; /* gray-200 */
    border-bottom-color: #4b5563 !important; /* gray-600 */
}

.dark .toastui-editor-contents p,
.dark .toastui-editor-contents li,
.dark .toastui-editor-contents td,
.dark .toastui-editor-contents th,
.dark .toastui-editor-contents span,
.dark .toastui-editor-contents div {
    color: #d1d5db !important; /* gray-300 */
}

.dark .toastui-editor-contents strong {
    color: #f3f4f6 !important; /* gray-100 */
}

.dark .toastui-editor-contents a {
    color: #60a5fa !important; /* blue-400 */
}

.dark .toastui-editor-contents blockquote {
    border-left-color: #4b5563 !important;
    color: #9ca3af !important; /* gray-400 */
}

.dark .toastui-editor-contents code {
    background-color: #374151 !important; /* gray-700 */
    color: #fbbf24 !important; /* amber-400 */
}

.dark .toastui-editor-contents pre {
    background-color: #1f2937 !important; /* gray-800 */
}

.dark .toastui-editor-contents hr {
    border-color: #4b5563 !important; /* gray-600 */
}

