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

.mothership-shell {
  display: flex;
  min-height: 100vh;
}

.mothership-sidebar {
  width: 248px;
  flex-shrink: 0;
  border-right: 1px solid #e4e4e7;
  background: #ffffff;
  padding: 32px 28px;
}

.mothership-brand {
  margin-bottom: 40px;
}

.mothership-content-area {
  min-width: 0;
  flex: 1;
}

.mothership-topbar {
  border-bottom: 1px solid #e4e4e7;
  padding: 0 72px;
}

.mothership-topbar-inner {
  height: 64px;
  max-width: 1024px;
}

.mothership-main {
  padding: 56px 72px;
}

.mothership-main-inner {
  max-width: 1024px;
}

/* Shared button classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background-color 0.15s;
  cursor: pointer;
}

.btn-primary {
  background-color: #09090b;
  color: #ffffff;
  border: 1px solid #09090b;
}

.btn-primary:hover {
  background-color: #27272a;
}

.btn-danger {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.btn-danger:hover {
  background-color: #fee2e2;
}
