/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Shared tab styles */
.task-detail-tab {
  border-color: transparent;
  color: #6b7280;
}
.dark .task-detail-tab {
  color: #94a3b8;
}
.task-detail-tab:hover {
  color: #374151;
}
.dark .task-detail-tab:hover {
  color: #f1f5f9;
}
.task-detail-tab.tab-active {
  border-color: #3b82f6;
  color: #2563eb;
  background-color: #eff6ff;
}
.dark .task-detail-tab.tab-active {
  color: #60a5fa;
  background-color: rgba(30, 58, 138, 0.3);
}
