/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Override Bulma font family variables to use Inter */
:root {
  --bulma-family-sans-serif: 'Inter', BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bulma-family-primary: 'Inter', BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bulma-shadow: none;
  --bulma-radius: 8px;
  --bulma-control-border-width: 2px;
  --bulma-navbar-height: calc(3.25rem + 10px);
  --bulma-block-spacing: 0.5rem;
  --bulma-column-gap: 0.25rem;
}

.modal {
  view-transition-name: var(--modal-transition-name);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  position: sticky;
  top: 0;
  z-index: 1;

  * {
    display: flex;
  }
}

.card {
  --bulma-card-content-padding: 1rem;
  --bulma-card-radius: 8px;
  transition: all 0.4s ease;
}

.is-selected .card {
  border-color: #000;
}

.input {
  --bulma-input-border-color: #000;
}

.button {
  border-color: #000;
}

.border-2-light {
  border: 2px solid var(--bulma-text-85);
}

.pointer {
  cursor: pointer;
}

.action-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
}
