/* ========== GLOBAL RESET & BASICS ========== */
*, *::before, *::after { box-sizing: border-box; }


html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  color: #333;
}

body {
  min-height: 100vh;
  background: linear-gradient(-45deg, #1D2671, #C33764);
  background-size: 400% 400%;
  animation: gradientBG 15s ease-in-out infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-wrapper {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 125px;
}

main.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
main.container.auth-pages { margin: 0 auto; }

/* ========== HEADER ========== */
header {
  width: 100%;
  background: #ffffffcc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 0 0 20px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  font-size: 2rem;
  color: black;
  font-weight: 600;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height:0.9em;
}
.logo-thin { font-weight:300; }
.logo-img { height: 60px; width: 60px; margin-right: 8px; }
.header-userbox { display: flex; align-items: center; gap: 15px; }
.user-btn { font-size: 1.6em; text-decoration: none; color: #bc6aff; transition: color 0.15s; margin-top:2px;}
.user-btn:hover { color: #ff6a88; }
.user-greeting { margin-right: 8px; font-size: 1.02em; color: #444; }
.header-login-btn, .header-logout-btn {
  background: #ff6a88; color: #fff; border: none; padding: 9px 22px; border-radius: 22px; font-size: 0.9em;
  font-weight: bold; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: background 0.18s, color 0.18s; letter-spacing: 0.7px; line-height: 1.1;
  text-decoration: none; display: inline-block; min-width: 90px; text-align: center;
}
.header-login-btn:hover, .header-logout-btn:hover { background: #bc6aff; color: #fff; }

.header-userbox {
  display: flex;
  align-items: center;
  gap: 50px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.profile-icon-wrapper {
  position: relative;
  display: inline-block;
  width: 32px; height: 32px;
}

.profile-icon {
  position: absolute;
  top: 0; left: 0;
  width: 35px; height: 35px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity .6s;
}

.profile-icon.hover {
  opacity: 0;
  z-index: 2;
}
.user-btn:hover .profile-icon.hover {
  opacity: 1;
}
.user-btn:hover .profile-icon.default {
  opacity: 0;
}

.user-greeting {
  font-size: 1.05em;
  color: #444;
  font-weight: 500;
  margin-right: 2px;
}


/* ========== ZUTATEN, FILTER, REZEPTE-GRID ========== */
.zutaten-box, .content-row {
  width: 100%;
  display: flex;
  justify-content: center;
}
.content-row {
  flex-direction: row;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}
.content-row.with-detail { gap: 30px; }
.zutaten-box {
  border-radius: 18px;
  padding: 28px 22px 15px 22px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
.zutaten-container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; width: 100%; margin-bottom: 30px;
}
.zutat {
  background: #fff; border: none; padding: 9px 16px; border-radius: 30px;
  cursor: pointer; font-size: 0.9em; font-weight: 600; transition: 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); font-family: "Quicksand", sans-serif; font-optical-sizing: auto;
}
.zutat:hover:not(.selected) {
  background: #eaf7ff; color: #6aa6ff; transform: scale(1.07);
  box-shadow: 0 4px 14px rgba(92,217,255,0.14);
}
.zutat.selected { background: #ff6a88; color: #fff; transform: scale(1.05); }
.zutaten-search-wrapper {
  position: relative; width: 100%; max-width: 420px; margin-bottom: 50px;
}
.zutaten-search {
  width: 100%; padding: 10px 36px 10px 12px; font-size: 1.07em;
  border: none; border-bottom: 1.5px solid #fff; background: transparent; color: #fff; outline: none;
  transition: border-bottom 0.18s; font-family: "Quicksand", sans-serif; font-optical-sizing: auto;
}
.zutaten-search::placeholder { color: #fff; opacity: 0.7; letter-spacing: 0.1em; }
.zutaten-search:focus { border-bottom: 1.5px solid #fff; }
.zutaten-search-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: 1.35em; opacity: 0.92; user-select: none;
}

.left-col, .right-col { transition: width 0.4s; }
.left-col { width: 100%; }
.left-col.shrinked { width: 50%; }
.right-col { width: 0; opacity: 0; overflow: visible; transition: all 0.4s ease; display: flex; align-items: flex-start; }
.right-col.visible { width: 50%; opacity: 1; }

.rezepte-box {
  width: 100%; border-radius: 18px; transition: width 0.4s; min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-start; margin-top: 28px;
}
/*.rezepte-box.shrinked {  }*/
.rezepte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  width: 100%;
}
.rezept-card {
  background: #fff; 
  border-radius: 12px; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  cursor: pointer; 
  min-width: 0;
  transition: all 0.3s ease;
}

/* Ausgewählte Karte */
.rezept-card.selected {
  border: 3px solid #3498db;
  box-shadow: 0 4px 16px rgba(52,152,219,0.3);
  transform: scale(1.02);
  z-index: 10;
}

/* Inaktive Karten */
.rezept-card.inactive {
  opacity: 0.5;
  filter: grayscale(80%);
  transform: scale(0.98);
}

/* Hover nur für nicht-ausgewählte und nicht-inaktive Karten */
.rezept-card:not(.selected):not(.inactive):hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.rezept-thumbnail { width: 100%; height: 250px; object-fit: cover; }
.rezept-content { padding: 15px; }
.rezept-content h3 { margin: 0 0 10px; color: #ff6a88; }
.rezept-meta { font-size: 0.9em; color: #555; }
.no-results { font-size: 1.2em; color: #fff; text-align: center; padding: 40px 0; }


.stars { letter-spacing: 2px; color: #ffc107; display: flex; gap: 2px; margin-bottom: 12px; }


/* ========== REZEPT-DETAILPANEL ========== */
.detail-panel {
  width: 100%; background: #fff; border-radius: 15px; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  padding: 32px 28px 28px 28px; margin-top: 28px; color: #333;
  display: flex; flex-direction: column; align-items: stretch;
}
.detail-panel .zutaten-progress { margin: 18px 0 10px 0; }
.detail-panel .zutaten-progress-bar {
  background: #f0f0f0; height: 10px; border-radius: 6px; overflow: hidden; margin-bottom: 5px; width: 100%;
}
.detail-panel .zutaten-progress-bar-inner {
  background: linear-gradient(90deg, #5cd9ff, #bc6aff); height: 100%; border-radius: 6px; transition: width 0.3s;
}
.detail-panel .zutaten-list { list-style: none; padding: 0; margin: 10px 0 20px 0; }
.detail-panel .zutaten-list li { font-size: 1em; margin: 6px 0; display: flex; align-items: center; gap: 9px; }
.detail-panel .zutaten-list .check { color: #24c324; font-size: 1.1em; }
.detail-panel .zutaten-list .cross { color: #e84a4a; font-size: 1.1em; }

.einkaufsliste-btn {
  padding: 10px 22px; border-radius: 50px; background: #c0e3ff; border: none; color: #333; font-weight: bold;
  box-shadow: 0 1px 5px rgba(0,0,0,0.08); cursor: pointer; margin-top: 10px; transition: background 0.2s;
}
.einkaufsliste-btn:hover { background: #ff6a88; color: #fff; }
.einkaufsliste-btn.favorit-active { background: #ff6a88 !important; color: #fff !important; }

/* ========== FLOATING HEART ANIMATION ========== */
#floating-heart {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    font-size: 2.4em;
    z-index: 9999;
    pointer-events: none;
    color: #d83262;
    opacity: 0;
    transition: opacity 0.2s;
    /* Kein Box-Shadow oder Sonstiges nötig */
}


.favorit-btn.favorit-active::after {
  position: absolute;
  right: 8px;      /* Statt -32px */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25em;
  opacity: 1;
  transition: opacity 0.2s;
}

/* ========== FAVORITEN-ROW ========== */
.favoriten-row {
  width: 100%; max-width: calc(2 * 414px + 2 * 24px);
  margin: 75px auto 56px auto; display: flex; flex-direction: column; align-items: center; padding:0 16px;
}
/*.favoriten-row p {}*/

/* ========== FAVORITEN-CONTENT-ROW (Profilseite) ========== */
.favoriten-content-row {
  display: flex; flex-direction: row; align-items: flex-start; max-width: 1000px; margin: 0 auto; width: 100%; gap: 0;
}
.favoriten-content-row .left-col { width: 100%; transition: width 0.3s; min-width: 0; padding-right: 0; }
.favoriten-content-row .right-col {
  width: 0; opacity: 0; overflow: hidden; transition: width 0.3s, opacity 0.3s; min-width: 0; display: flex; flex-direction: column;
}
.favoriten-content-row.with-detail .left-col { width: 50%; padding-right: 0; }
.favoriten-content-row.with-detail .right-col { width: 100%; opacity: 1; overflow: visible; min-width: 0; padding-left: 0; }
.favoriten-content-row .rezepte-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; width: 100%;
}

/* ========== USERPAGE & EINKAUFSLISTE ========== */
.user-flex-row { display: flex; gap: 24px; justify-content: center; align-items: flex-start; margin-top: 35px; }
.userform-col form { width: 100%; }
.userform-col, .einkaufsliste-col {
  width: 100%; max-width: 410px; min-width: 220px; margin: 0; background: #fff;
  border-radius: 18px; box-shadow: 0 2px 15px rgba(92,217,255,0.10);
  padding: 28px 24px 18px 24px; display: flex; flex-direction: column; align-items: center;
}
.userform-col h2, .einkaufsliste-col h2 { margin-bottom: 22px; }
.userform-col label { width: 100%; display: block; margin-bottom: 10px; font-weight: 500; }
.userform-col input[type="text"], .userform-col input[type="email"], .userform-col input[type="password"] {
  width: 100%; padding: 10px 12px; margin-top: 5px; margin-bottom: 17px; border-radius: 7px; border: 1px solid #eee;
  font-size: 1em; background: #fcfcfc; transition: border-color 0.17s;
}
.userform-col input:focus { border-color: #bc6aff; outline: none; }
.btn {
  width: 100%; padding: 12px 0; background: #bc6aff; color: #fff; border: none; border-radius: 7px;
  font-size: 1.08em; font-weight: bold; margin-top: 4px; cursor: pointer; transition: background 0.18s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.07); letter-spacing: 1px;
}
.btn:hover { background: #ff6a88; }
.show-more-btn {
  background: #6aabff; color: #fff; border: none; border-radius: 30px; padding: 9px 20px;
  font-size: 0.9em; font-weight: 600; box-shadow: 0 2px 7px rgba(92,217,255,0.10);
  letter-spacing: 1px; margin-top: 14px; cursor: pointer; transition: background 0.18s, color 0.18s, transform 0.13s;
}
.show-more-btn:hover { background: #fff; color: #6aabff; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin: 14px 0 50px 0; }
.checkbox-group label { font-weight: 400; margin: 0; display: flex; align-items: center; gap: 7px; }

/* Einkaufsliste */
.einkaufsliste-list { list-style: none; margin: 0; padding: 0; width: 100%; }
.einkaufsliste-list li {
  display: flex; align-items: center; justify-content: space-between; width: 100%; border-bottom: 1px solid #eee; padding: 8px 0;
}
.einkaufsliste-zutat { flex: 1 1 auto; text-align: left; word-break: break-word; font-size: 1em; color: #333; padding-right: 10px; }
.del-btn {
  background: #ffe0e0; color: #d03737; border: none; border-radius: 50px; font-size: 1em; padding: 6px 10px;
  cursor: pointer; transition: background 0.16s; margin-left: 12px; text-align: right; flex-shrink: 0;
}
.del-btn:hover { background: #ffbaba; }

/* ========== FEEDBACK-MESSAGES ========== */
.error-msg, .success-msg { margin-bottom: 12px; width: 100%; text-align: center; }
.error-msg { color: #c0392b; }
.success-msg { color: #27ae60; }

/* ========== MODAL ========== */
#modal-overlay, .modal-overlay {
  position: fixed; z-index: 1000; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
#modal-content, .modal-box {
  background: #fff; color: #333; min-width: 280px; max-width: 92vw; padding: 32px 22px 20px 22px;
  border-radius: 13px; box-shadow: 0 4px 24px rgba(0,0,0,0.17); font-size: 1.1em; position: relative; text-align: center; display: flex; flex-direction: column; align-items: center;
}
#modal-content button, .modal-box button {
  margin-top: 24px; padding: 10px 28px; border-radius: 8px; background: #bc6aff; color: #fff; font-weight: bold; border: none; font-size: 1.07em; cursor: pointer; transition: background 0.18s;
}
#modal-content button:hover, .modal-box button:hover { background: #ff6a88; }

/* ========== STERNE (BEWERTUNG) ========== */
.star { color: #ffc107; font-size: 1.5em; cursor: pointer; transition: color 0.12s; user-select: none; display: inline-block; }
.star.active { color: #ff6a88; }
.star.inactive { color: #eee; }
.bewertung-block { margin-bottom: 12px; }

/* ========== BUTTONS DANGER ========== */
.btn-danger {
  width: 100%; padding: 12px; background: #ffe0e0; color: #d03737; border: none; border-radius: 7px;
  font-size: 1.08em; font-weight: bold; margin-top: 18px; cursor: pointer; box-shadow: 0 2px 5px rgba(255,106,136,0.08); letter-spacing: 1px;
  transition: background 0.18s, color 0.18s;
}
.btn-danger:hover { background: #ffbaba; color: #b10000; }

/* ========== LOGIN PAGE ========== */

/* ===== LOGIN PAGE STYLES FÜR DEIN HTML ===== */

.form-wrapper input[name="username"] {
  /* dieselben Styles wie email & password */
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 22px;
  border: none;
  border-radius: 12px;
  font-size: 1.05em;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-wrapper input[name="username"]:focus {
  border-color: #ff6a88;
  outline: none;
}

.auth-pages {
  min-height: 60vh;
  display: flex;
  padding: 40px 16px;
  margin-top:50px!important;
  box-sizing: border-box;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.836);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(188, 106, 255, 0.3);
  max-width: 400px;
  width: 100%;
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.6s ease forwards;
}

.form-wrapper h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #444;
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  width: 100%;
  text-align: center;
}

.form-wrapper label {
  font-weight: 600;
  font-size: 1.05em;
  margin-bottom: 8px;
  color: #444;
  width: 100%;
  display: block;
}

.form-wrapper input[type="email"],
.form-wrapper input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 22px;
  border: none;
  border-radius: 12px;
  font-size: 1.05em;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-wrapper input[type="email"]:focus,
.form-wrapper input[type="password"]:focus {
  border-color: #ff6a88;
  outline: none;
}

.login-btn {
  background: #ff6a88;
  color: white;
  font-weight: 700;
  font-size: 1.15em;
  padding: 14px 0;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 106, 136, 0.45);
  transition: background 0.25s ease;
  width: 100%;
  letter-spacing: 1.2px;
}

.login-btn:hover {
  background: #bc6aff;
}

.form-wrapper p {
  margin-top: 30px;
  font-size: 0.98em;
  color: #333;
  text-align: center;
  width: 100%;
}

.form-wrapper p a {
  color: #bc6aff;
  text-decoration: underline;
  transition: color 0.15s;
  font-weight: 500;
}

.form-wrapper p a:hover {
  color: #ff6a88;
}

/* Optional: Fehlermeldung im Login-Formular */
.login-error-msg {
  background: #ffe0e0;
  color: #d03737;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(208, 55, 55, 0.15);
}

/* Responsive Anpassungen */
@media (max-width: 450px) {
  .form-wrapper {
    padding: 28px 20px 24px 20px;
  }

  .form-wrapper h2 {
    font-size: 1.8em;
  }

  .form-wrapper input[type="email"],
  .form-wrapper input[type="password"] {
    font-size: 1em;
  }

  .login-btn {
    font-size: 1.05em;
    padding: 12px 0;
  }
}


/* ========== LOGOUT-MSG ========== */
.logout-msg {
  max-width: 480px; margin: 100px auto 0 auto; background: #fff; border-radius: 18px;
  box-shadow: 0 2px 15px rgba(92,217,255,0.12); padding: 40px 38px 28px 38px; display: flex;
  flex-direction: column; align-items: center; animation: fadeIn 0.7s; text-align: center;
}
.logout-msg h2 {
  color: #27ae60; margin-bottom: 18px; font-size: 2em; font-weight: 600; letter-spacing: 1px;
}
.logout-msg p {
  font-size: 1.13em; color: #444; margin: 10px 0 8px 0;
}
.logout-msg a {
  color: #bc6aff; text-decoration: underline; transition: color 0.15s; font-weight: 500;
}
.logout-msg a:hover { color: #ff6a88; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px);}
  to { opacity: 1; transform: none;}
}

/* ========== FOOTER ========== */
footer {
  background: transparent; color: #fff; text-align: center; padding: 10px; font-size: 0.95em; margin-top: auto;
}

footer .container a {
  color: #8ecaff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 6px;
}

footer .container a:hover {
  color: #fff;
  background: #3772ff;
  text-decoration: underline;
}

.datenschutz-content,
.impressum-content {
    color: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 18px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.datenschutz-content h1,
.impressum-content h1 {
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.datenschutz-content a,
.impressum-content a {
    color: #97bfff;
    text-decoration: underline;
    transition: color 0.2s;
}

.datenschutz-content a:hover,
.impressum-content a:hover {
    color: #fff;
    text-decoration: none;
}


/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 950px) {
  .user-flex-row { flex-direction: row; gap: 24px; align-items: flex-start; justify-content: center; padding:0 16px;}
  .content-row { flex-direction: column; gap: 20px; align-items: center; margin: 50px 30px; }
  .favoriten-content-row, .favoriten-content-row.with-detail { flex-direction: column; gap: 18px; }
  .favoriten-content-row .left-col, .favoriten-content-row .right-col { width: 100% !important; max-width: 98vw; transition: none; }
}

@media (max-width: 700px) {
  .content-row, .favoriten-content-row, .content-row.with-detail, .favoriten-content-row.with-detail {
    flex-direction: column; gap: 18px; padding: 0 8px;
  }
  .left-col, .right-col, .left-col.shrinked, .right-col.visible {
    width: 100%; min-width: 0; padding: 0; opacity: 1;
  }
  .rezepte-box, .rezepte-grid {
    width: 100% !important; min-width: 0 !important; margin: 0 !important; padding: 0 !important; box-sizing: border-box;
  }
  .favoriten-content-row.with-detail .left-col { padding-right:0; }
  .favoriten-content-row.with-detail .right-col { padding-left: 0; }
  .right-col:not(.visible) {
  display: none; /* Oder width: 0; opacity: 0; */
}
}

@media (max-width: 750px) {
  .rezepte-box { width: 100%; }
  .rezepte-box.shrinked { width: 100%; }
  .content-row { margin: 30px 30px; }
  .page-wrapper { padding-top: 75px; }
  .header-login-btn, .header-logout-btn { padding: 10px 20px; min-width: 0; font-size: .9em; }
  .user-greeting { display: none; }
  .form-wrapper, .userform-col, .einkaufsliste-col { padding: 18px 5vw 15px 5vw; }
  .zutaten-search-wrapper { max-width: 75vw; margin: 50px; }
  .zutaten-search { font-size: 1.1em; padding: 16px 36px 16px 12px; }
  .zutaten-box { padding: 0px; }
  .zutaten-search-icon { font-size: 1.7em; right: 10px; }
  .rezepte-box { min-height: 0; flex-direction: row; justify-content: center; }
  .rezepte-grid { width: 92%; }
  .zutat { font-size: .85em; padding: 6px 14px; border-radius: 38px; font-weight:600; letter-spacing:1px; }
  .modal-box { font-size: 1.27em; padding: 20px 6vw; }
  .user-btn { font-size: 1.3em; }
  .star { font-size: 2em; }
  .show-more-btn { font-size: .9em; }
  .zutaten-container { gap: 10px; }
  main.container { gap: 0; }
  .logo { font-size: 1.6rem; letter-spacing: 2px; }
  .logo-img { height:40px; width:40px; }
  .btn { font-size: 1.08em; }
  .right-col.visible { width: 100%; opacity: 1; padding:0; }
  .left-col.shrinked { width: 100%; }
  .favoriten-row { width: 100%; max-width: calc(2 * 398px + 2 * 24px); margin: 50px auto 56px auto; display: flex; flex-direction: column; align-items: center; }
  .user-flex-row { flex-direction: column !important; gap: 18px; align-items: stretch; margin: 50px 7px; }
  .userform-col, .einkaufsliste-col { max-width: 100%; min-width: 0; width: 100%; box-sizing: border-box; }
  main.container.auth-pages { padding: 30px; }
  .logout-msg { max-width: 480px; margin: 0 auto 0 auto; padding: 40px 38px 28px 38px; }
  .logout-msg h2 { font-size: 1.5em; }
  .logout-msg p { font-size: 1em; color: #444; }
  .header-userbox {
  display: flex;
  align-items: center;
  gap: 20px;
}
}
