/* Navbar layout and link styles for BackOffice */
.ps-navbar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.5rem;
  gap: 1.5rem;
}
.ps-navbar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ps-navbar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.2rem;
}
.ps-navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.ps-navbar-links a.active,
.ps-navbar-links a:hover {
  background: none;
  color: #ffc016;
  border-bottom: 3px solid #ffc016;
  border-radius: 0;
}
/* Reusable logout button style for BackOffice navbar */
.ps-logout-btn {
  margin-left: auto;
  margin-right: 1.5rem;
  padding: 8px 18px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, box-shadow 0.2s;
}
.ps-logout-btn:hover {
  background: #c0392b;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.12);
}
/* Reusable heading style for PassionStocks BackOffice title */
.ps-backoffice-title {
  margin: 1.2rem 0 1.2rem 0;
  font-size: 2rem;
  padding-left: 0;
  font-weight: bold;
}
/* Simple desktop layout */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

.navbar {
  background: #2e2e2e;
  color: white;
  padding: 1rem;
}

.navbar nav a {
  color: #ccc;
  margin-right: 1rem;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  color: white;
  border-bottom: 2px solid white;
}

main {
  padding: 2rem;
  margin-top: 1rem;
}

h2 {
  margin-top: 0;
}

.card {
  background: white;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

thead {
  background: #ddd;
}

th,
td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: left;
}

button {
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}

.profile-pic {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.search-input {
  padding: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 400px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  min-width: 300px;
}

.modal-content label {
  display: block;
  margin: 0.5rem 0;
}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.25rem;
}

#waitlist-types {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.waitlist-type-btn {
  background: #f3f3f3;
  border: 1px solid #bbb;
  color: #444;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.waitlist-type-btn.active {
  background: #2a7ae2;
  color: #fff;
  border: 1.5px solid #1a4e96;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(42, 122, 226, 0.08);
  transform: scale(1.04);
  z-index: 1;
}

.waitlist-type-btn:not(.active):hover {
  background: #e6e6e6;
  color: #222;
  border: 1.5px solid #888;
}

/* Beta send button styles */
.beta-send-btn {
  background: #2a7ae2 !important;
  color: white !important;
  border: none !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 12px !important;
  transition: background 0.2s !important;
}

.beta-send-btn:hover {
  background: #1a4e96 !important;
}

.beta-send-btn:active {
  background: #144080 !important;
  transform: scale(0.98);
}

/* Bulk beta action button styles */
.bulk-beta-btn {
  background: #27ae60 !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.bulk-beta-btn:hover {
  background: #219a52 !important;
}

.bulk-beta-btn:active {
  background: #1e8449 !important;
  transform: scale(0.98);
}
