html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

label {
    font-size: small;
    margin-top: 10px;
}

nav {
    background-color: white !important;
    margin-bottom: 1rem !important;
}

#themebanner {
    display:none;
}

thead {
    background-color: #cfe2ff;
}

.navbar-brand {
    width: 130px;
    height: 50px;
    margin-left: 50px;
    margin-right: 50px;
    background-image: url("../img/RSKLess-tiny.png");
    background-position: center;
    background-size: cover;
}


.cursor-alias {
    cursor: alias;
}

.cursor-all-scroll {
    cursor: all-scroll;
}

.cursor-auto {
    cursor: auto;
}

.cursor-cell {
    cursor: cell;
}

.cursor-col-resize {
    cursor: col-resize;
}

.cursor-context-menu {
    cursor: context-menu;
}

.cursor-copy {
    cursor: copy;
}

.cursor-crosshair {
    cursor: crosshair;
}

.cursor-default {
    cursor: default;
}

.cursor-e-resize {
    cursor: e-resize;
}

.cursor-ew-resize {
    cursor: ew-resize;
}

.cursor-grab {
    cursor: -webkit-grab;
    cursor: grab;
}

.cursor-grabbing {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.cursor-help {
    cursor: help;
}

.cursor-move {
    cursor: move;
}

.cursor-n-resize {
    cursor: n-resize;
}

.cursor-ne-resize {
    cursor: ne-resize;
}

.cursor-nesw-resize {
    cursor: nesw-resize;
}

.cursor-ns-resize {
    cursor: ns-resize;
}

.cursor-nw-resize {
    cursor: nw-resize;
}

.cursor-nwse-resize {
    cursor: nwse-resize;
}

.cursor-no-drop {
    cursor: no-drop;
}

.cursor-none {
    cursor: none;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-progress {
    cursor: progress;
}

.cursor-row-resize {
    cursor: row-resize;
}

.cursor-s-resize {
    cursor: s-resize;
}

.cursor-se-resize {
    cursor: se-resize;
}

.cursor-sw-resize {
    cursor: sw-resize;
}

.cursor-text {
    cursor: text;
}

.cursor-url {
    cursor: url(myBall.cursor-cur),auto;
}

.cursor-w-resize {
    cursor: w-resize;
}

.cursor-wait {
    cursor: wait;
}

.cursor-zoom-in {
    cursor: zoom-in;
}

.cursor-zoom-out {
    cursor: zoom-out;
}

#site-nav .nav-link:hover {
    text-decoration: underline;
}

/* Enhanced Tab Styling - matching Dashboard TabManager */
.enhanced-tabs {
  background: #f8f9fa;
  padding: 0 20px;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0;
}

.enhanced-tab-button {
  position: relative;
  border: none !important;
  background: transparent !important;
  color: #6c757d !important;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 20px !important;
  margin: 0 2px;
  border-radius: 6px 6px 0 0 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  text-decoration: none;
}

.enhanced-tab-button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  color: #495057 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-color: transparent !important;
  text-decoration: none;
}

.enhanced-tab-button.active {
  background: #ffffff !important;
  color: #212529 !important;
  font-weight: 600;
  border-color: transparent !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.enhanced-tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #007bff;
}

/* Enhanced tab content */
.enhanced-tab-content {
  background: transparent;
  min-height: 400px;
  padding: 20px 0 0 0;
}

/* Add subtle animation when switching tabs */
.enhanced-tab-content .tabpanel {
  animation: fadeInUp 0.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus styles for accessibility - only show when navigating with keyboard */
.enhanced-tab-button:focus {
  outline: none;
}

.enhanced-tab-button:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
  .enhanced-tabs {
    padding: 0 10px;
  }
  
  .enhanced-tab-button {
    min-width: 100px;
    padding: 12px 16px !important;
    font-size: 13px;
  }
}