/* src/css/buttons.css */
.btn {
  padding: 0.5rem 1rem;
  font-family:
    Outfit,
    Arial,
    sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  background-color: #0B66D0;
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn.btn-secondary {
  background-color: #6c757d;
}
.btn:not(:disabled):hover {
  background-color: #0056b3;
}
.btn:disabled {
  cursor: not-allowed;
  background-color: #cccccc;
}

/* src/css/cards.css */
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: stretch;
}
.card {
  flex: 1 1 280px;
  max-width: 360px;
  background: #5493DE;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card h3 {
  margin-top: 0;
}
.card .card-header {
  margin-bottom: 0.75rem;
}
.card .card-body {
}
.card .card-footer {
  margin-top: 1rem;
  text-align: right;
}

/* src/css/fonts.css */

/* src/css/forms.css */
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-field label {
  margin-bottom: 0.25rem;
  font-weight: 100;
}
.form-field input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.form-field input[readonly],
.form-field textarea[readonly] {
  color: gray;
}
.form-field textarea {
  height: 200px;
}
.form-field .form-field-with-prefix,
.form-field .form-field-with-postfix {
  display: flex;
  width: 100%;
}
.form-field .form-field-with-prefix > *:first-child,
.form-field .form-field-with-postfix > *:last-child {
  line-height: 36px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: solid 1px gray;
}
.form-field .form-field-with-prefix > *:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-field .form-field-with-postfix > *:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.form-field .form-field-with-prefix input,
.form-field .form-field-with-postfix input {
  flex-grow: 1;
}
.form-field .form-field-with-prefix input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-field .form-field-with-postfix input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form-field .form-field-with-prefix button,
.form-field .form-field-with-postfix button {
  line-height: normal !important;
}

/* src/css/header-bar.css */
.header-bar {
  margin-bottom: 1rem;
  display: flex;
}
.header-bar h3 {
  margin: 0;
  flex-grow: 1;
  line-height: 35px;
}

/* src/css/footer-bar.css */
.footer-bar {
  margin-top: 1rem;
  display: flex;
}
.footer-bar .right {
  margin-left: auto;
}

/* src/css/loader-container.css */
.loader-container {
  position: relative;
  min-height: 200px;
}
.loader-container .loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loader-container:has(.loader-wrapper) > *:not(loader-component) {
  pointer-events: none;
  filter: brightness(0.5);
}

/* src/css/main-menu.css */
section.main-menu {
  border-bottom: solid 1px #ccc;
}
section.main-menu .container {
  display: flex;
  justify-content: space-between;
}
section.main-menu .logo {
  width: 100px;
}
section.main-menu ul {
  padding: 0;
  margin: 0;
}
section.main-menu ul li {
  line-height: 35px;
  display: inline;
  margin-right: 15px;
}
section.main-menu ul li a {
  text-decoration: none;
}
section.main-menu ul li a.active {
  font-weight: bold;
}

/* src/css/tables.css */
table {
  width: 100%;
  margin-bottom: 1rem;
}
table td,
table th {
  text-align: left;
  vertical-align: top;
}

/* src/css/styles.css */
html {
  font-size: 18px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
body {
  margin: 0;
  font-family:
    Outfit,
    Arial,
    sans-serif;
  font-size: 1rem;
  background-color: #031E3E;
  color: #FFF;
}
a {
  color: #FFF;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.container.container-narrow {
  max-width: 600px;
}
.error-message {
  color: red;
}
.success-message {
  color: green;
}
.mb {
  margin-bottom: 1rem;
}

/* src/css/messages-table.css */
.messages-table {
  border-collapse: collapse;
}
.messages-table tr.message-unread {
  font-weight: bold;
}
.messages-table tr th {
  border-bottom: solid 1px #777;
}
.messages-table td,
.messages-table th {
  padding: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* src/css/main.css */

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