/*
 * 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.
 */

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}

/* Material card */
.mdc-card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-card:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
}

/* Material raised button */
.mdc-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.0892857em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s;
}
.mdc-button--primary {
  background-color: #1976d2;
  color: white;
  box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.mdc-button--primary:hover {
  background-color: #1565c0;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
}
.mdc-button--outlined {
  background-color: transparent;
  color: #1976d2;
  border: 1px solid rgba(25, 118, 210, 0.5);
}
.mdc-button--outlined:hover {
  background-color: rgba(25, 118, 210, 0.04);
}

/* Custom confirm dialog fade */
#confirm-modal.confirm-modal-visible {
  opacity: 1;
}

/* Generic dialog fade */
.dialog-modal.dialog-visible {
  opacity: 1;
}
