/* Theme Variables */
:root {
  /* Updated Colors */
  --primary-color: rgb(0, 95, 204);
  --text-color: #333;
  --active-text-color: #fff;
  --placeholder-color: #666;
  --button-background-color: #f5f5f5;
  --background-color: #fff;
  --overlay-color: rgba(0, 0, 0, 0.8);
  --border-color: #333;
  --sidebar-background-color: #f8f9fa;
  --hover-item-color: #e9ecef;
  --active-item-color: #e9ecef;
  --danger-color: #dc3545;
  --primary-hover-color: #004bb5;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-bold: 600;

  /* Other Variables */
  --border-radius: 4px;
  --z-index-modal: 600;
  --font-size-md: 1rem;

  /* Modal Variables */
  --modal-background-color: #ffffff;
  --modal-header-footer-background: #f5f5f5;
  --modal-title-color: #333333;
  --modal-text-color: #444444;
  --modal-overlay-color: rgba(0, 0, 0, 0.8);

  /* Button Variables */
  --button-primary-background: #005fcc;
  --button-primary-text: #ffffff;
  --button-primary-hover-background: #004bb5;
  --button-secondary-background: #f5f5f5;
  --button-secondary-text: #333333;
  --button-secondary-hover-background: #e9ecef;
  --button-tertiary-background: #e9ecef;
  --button-tertiary-text: #333333;
  --button-tertiary-hover-background: #d6d8db;
}

/* Override Bulma's .button.is-link styles */
.button.is-link {
  background-color: var(--primary-color);
  color: var(--active-text-color);
  border: none;
  font-weight: var(--font-weight-bold);
}

.button.is-link:hover {
  background-color: var(--primary-hover-color);
  color: var(--active-text-color);
}

/* Global Button Styles */
.button {
  background-color: var(--button-background-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-normal);
}

.button:hover {
  background-color: var(--active-item-color);
  color: var(--text-color);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--active-text-color);
  border: none;
  font-weight: var(--font-weight-bold);
}

.button.is-primary:hover {
  background-color: var(--primary-hover-color);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: transparent !important;
  box-shadow: none;
}
