/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

/* Admin navigation styles */
.navigation__logout {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.navigation__link--logout {
  color: #dc3545 !important;
  font-weight: bold;
}

.navigation__link--logout:hover {
  background-color: #dc3545 !important;
  color: white !important;
}

.navigation__user {
  margin-top: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
  font-size: 12px;
}

/* Custom admin header */
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2563eb;
  color: white;
  padding: 1rem;
}

.header__heading {
  margin: 0;
}

.header__link {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__user {
  font-size: 0.875rem;
}

.header__logout {
  background-color: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.875rem;
}

.header__logout:hover {
  background-color: #b91c1c;
}

.badge {
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
  margin-left: 0.5rem;
}

.badge--admin {
  background-color: #dc2626;
  color: white;
}

.badge--agent {
  background-color: #16a34a;
  color: white;
}
