/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS 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/SCSS
 * 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.
 *
 */

:root {
  /* Colors */
  --bs-blue: #3b82f6;
  --bs-indigo: #6366f1;
  --bs-purple: #8b5cf6;
  --bs-pink: #ec4899;
  --bs-red: #ef4444;
  --bs-orange: #f59e0b;
  --bs-yellow: #f59e0b;
  --bs-green: #10b981;
  --bs-teal: #14b8a6;
  --bs-cyan: #06b6d4;
  --bs-gray: #6b7280;
  --bs-gray-dark: #374151;
  --bs-primary: #3b82f6;
  --bs-secondary: #6b7280;
  --bs-success: #10b981;
  --bs-info: #3b82f6;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;
  --bs-light: #f9fafb;
  --bs-dark: #111827;
  --bs-white: #ffffff;
  --bs-black: #000000;

  /* Spacing */
  --bs-spacing-1: 0.25rem;
  --bs-spacing-2: 0.5rem;
  --bs-spacing-3: 0.75rem;
  --bs-spacing-4: 1rem;
  --bs-spacing-5: 1.25rem;
  --bs-spacing-6: 1.5rem;
  --bs-spacing-7: 1.75rem;
  --bs-spacing-8: 2rem;
  --bs-spacing-9: 2.25rem;
  --bs-spacing-10: 2.5rem;
  --bs-spacing-11: 2.75rem;
  --bs-spacing-12: 3rem;

  /* Border Radius */
  --bs-border-radius: 0.25rem;
  --bs-border-radius-sm: 0.125rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 0.75rem;
  --bs-border-radius-xxl: 1rem;
  --bs-border-radius-2xl: 1.5rem;
  --bs-border-radius-pill: 50rem;

  /* Fonts */
  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;

  /* Box Shadow */
  --bs-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --bs-box-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --bs-box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --bs-box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transition */
  --bs-transition: all 0.2s ease-in-out;
}

html, body {
  font-family: "Lucida Console", Monaco, monospace;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.full-height {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  flex-shrink: 0; /* Prevent nav from shrinking */
  background-color: #343a40;
  color: white;
  padding: 1rem;
}

footer {
  flex-shrink: 0; /* Prevent footer from shrinking */
  background-color: #343a40;
  color: white;
  padding: 1rem;
}

main {
  flex: 1; /* Take remaining space */
  min-height: 0; /* Important for proper flexbox behavior */
}

.main-container {
  height: 100%;
}

.sidebar {
  height: 100%;
  overflow-y: auto;
  padding: 0;
}

.content-area {
  height: 100%;
}

.scrollable-column {
  height: 100%;
  overflow-y: auto;
  padding: 1rem;
}

/* Custom scrollbar styling */
/* .scrollable-column::-webkit-scrollbar {
  width: 8px;
}

.scrollable-column::-webkit-scrollbar-track {
  background: #888;
}

.scrollable-column::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable-column::-webkit-scrollbar-thumb:hover {
  background: #555;
} */

.alert {
  position: absolute;
  /*top: 0px;*/
  z-index: 99;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--bs-gray-700);
}
.divider::before {
  margin-right: 10px;
}
.divider::after {
  margin-left: 10px;
}

/*
 * Custom translucent site header
 */

/*
.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}
*/
