/* ============================================================
   MEDLEMSPORTAL & ADMIN STYLES
   Børkop Vandmølles Venner
   ============================================================ */

.portal-body {
  background: #F4EFE6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.portal-header {
  background: var(--mollebrun);
  color: #FFFFFF;
  padding: 1rem 0;
}
.portal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-header a {
  color: var(--hoe-hvid);
  text-decoration: none;
}
.portal-header .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.portal-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.portal-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.85;
}
.portal-nav a:hover,
.portal-nav a.active {
  opacity: 1;
  text-decoration: underline;
}

.portal-container {
  max-width: 1080px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  flex: 1;
}

.portal-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--kort-border);
  padding: 2rem;
  box-shadow: var(--skygge);
  margin-bottom: 2rem;
}
.portal-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--mollebrun);
  border-bottom: 1px solid var(--kort-border);
  padding-bottom: 0.8rem;
}

/* Vagtplan Tabel */
.shift-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.shift-table th,
.shift-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--kort-border);
  font-size: 0.95rem;
}
.shift-table th {
  background: var(--hoe-hvid);
  color: var(--mollebrun);
  font-weight: 700;
}
.shift-table tr:hover td {
  background: #FAF7F2;
}

.shift-status-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}
.shift-status-tag--open { background: #E2E8DF; color: #2D5A27; }
.shift-status-tag--full { background: #EFEADF; color: var(--mollebrun); }

/* Login Formular Box */
.login-box {
  max-width: 440px;
  margin: 4rem auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--kort-border);
  padding: 2.5rem;
  box-shadow: var(--skygge-stor);
  text-align: center;
}
.login-box .logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mollebrun);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.login-box h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.login-box p { font-size: 0.95rem; color: var(--tekst-mork); opacity: 0.85; margin-bottom: 1.8rem; }
.login-box form { text-align: left; }
