/* projects/angular-hub/src/styles.css */
* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
body {
  margin: 0;
  background: #f7f4fb;
  color: #251c30;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
label {
  display: grid;
  gap: .35rem;
  color: #443852;
  font-weight: 600;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-grid.two-columns {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.form-grid input,
.form-grid select,
.form-grid textarea,
.inline-form select,
.inline-form textarea {
  border: 1px solid #cfc7dd;
  border-radius: .7rem;
  padding: .7rem .85rem;
  width: 100%;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.checkbox-label input {
  width: auto;
}
.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.page-header h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.page-header p {
  margin: .3rem 0 0;
  color: #6a6074;
}
.card {
  background: #fff;
  border: 1px solid #e3deea;
  border-radius: 1rem;
  box-shadow: 0 16px 50px rgba(38, 19, 61, .08);
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: .9rem 1rem;
  border-bottom: 1px solid #eee8f3;
  text-align: left;
}
.table th {
  color: #5d526a;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.table tr:last-child td {
  border-bottom: 0;
}
.row-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.row-link:hover {
  text-decoration: underline;
}
.inline-form {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.inline-form input {
  min-width: min(280px, 100%);
  border: 1px solid #cfc7dd;
  border-radius: .7rem;
  padding: .7rem .85rem;
}
.button-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}
.primary-button,
.secondary-button,
.danger-button {
  border: 0;
  border-radius: .7rem;
  padding: .7rem .9rem;
  cursor: pointer;
  font-weight: 700;
}
.primary-button {
  background: #29133d;
  color: #fff;
}
.secondary-button {
  background: #ece5f5;
  color: #29133d;
}
.danger-button {
  background: #ffe9e9;
  color: #991b1b;
}
.message {
  margin: 1rem 0;
  padding: .8rem 1rem;
  border-radius: .8rem;
}
.message.error {
  background: #ffe9e9;
  color: #991b1b;
}
.message.success {
  background: #e8f7ef;
  color: #11643a;
}
@media (max-width: 760px) {
  .page-header {
    align-items: stretch;
    flex-direction: column;
  }
  .card {
    overflow-x: auto;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
