/* ============================= */
/* GLOBAL STYLES */
/* ============================= */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #f3f4f6;
  color: #111;
  padding-bottom: 70px; /* prevent content from hiding behind bottom nav */
}

body.dark {
  background: #1f2937;
  color: #f9fafb;
}

/* ============================= */
/* CONTAINER / LAYOUT */
/* ============================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-top: 90px;  /* space for fixed header */
  padding-bottom: 80px; /* space for bottom nav */
}

/* ============================= */
/* BUTTONS */
/* ============================= */
button:not(.nav-btn):not(.nav-btn-desktop):not(.user-button) {
  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  color: var(--button-text);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #1d4ed8;
}

.logout-btn {
  background: #dc2626;
}

.logout-btn:hover {
  background: #b91c1c;
}

/* ============================= */
/* CARDS */
/* ============================= */
.card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

body.dark .card {
  background: #111827;
  border: 1px solid #374151;
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

body.dark .card p {
  color: #d1d5db;
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.card-actions button {
  font-size: 12px;
  padding: 6px 10px;
}

/* ============================= */
/* BADGES */
/* ============================= */
.status-badge {
  display: inline-block;
  background: #16a34a;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

/* ============================= */
/* TOP HEADER / APP HEADER */
/* ============================= */
.app-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  height: auto;  
  padding-bottom: 2px; /* breathing room below links */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.app-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 60px;
}

.app-title {
  font-size: 18px;
  font-weight: 600;
}

/* ============================= */
/* USER DROPDOWN */
/* ============================= */
.user-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 2000;
}

.user-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: #111;
}

.user-button:hover {
  background: rgba(30, 98, 255, 0.06);
  transform: translateY(-1px);
}

.user-button:hover .username {
  color: #007bff;
}

.arrow-down {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.user-dropdown.show .arrow-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
  min-width: 100px;
  display: none;
  flex-direction: column;
  padding: 4px 0;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 1000;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  color: #111;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f5f4f6;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #ddd;
}

/* ============================= */
/* BOTTOM NAVIGATION */
/* ============================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 8px 0;
  box-shadow: 0 -1px 6px rgba(0,0,0,0.05);
}

.bottom-nav .nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 0 2px;
  box-sizing: border-box;
}

.bottom-nav .nav-btn span:last-child {
  font-size: 12px; /* label */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.bottom-nav .nav-btn:hover,
.bottom-nav .nav-btn.active-nav {
  color: #007bff;
  transform: translateY(-2px);
}

/* ============================= */
/* RESPONSIVE GLOBAL */
/* ============================= */
/* ============================= */
/* INVENTORY GRID */
/* ============================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* MOBILE */
@media (max-width: 750px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }


  .bottom-nav .nav-inner {
    gap: 5px;
    padding: 0 5px;
  }

  .bottom-nav .nav-btn {
      flex: 1 1 0;
      min-width: 0;
      padding: 10px 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
}

.item-container { max-width: 800px; margin: 20px auto; font-family: Arial, sans-serif; }
.item-value { color: green; margin-bottom: 10px; }
.item-status { font-size: 16px; margin-bottom: 20px; }
.item-description { margin-bottom: 20px; }
.image-slider { position: relative; width: 100%; height: 400px; overflow: hidden; margin-bottom: 20px; }
.image-slider img { width: 100%; height: 100%; object-fit: contain; display: block; }
.image-slider img.active { display: block; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; font-size: 24px; padding: 5px 10px; cursor: pointer; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.image-slider img.hidden {
  display: none;
}

/* Full width background bar */
.navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

/* THIS is the key part */
.navbar-inner {
  max-width: 1100px;   /* match your .container */
  margin: 0 auto;      /* centers it */
  padding: 12px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  max-width: 1100px; /* match your .container */
  margin: 0 auto;
  padding: 0 20px;
}

.app-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2px;
}

.notification {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  background: #f9fafb;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.notification:hover {
  transform: translateY(-1px);
  background: #f3f4f6;
}

.notification.unread {
  background: #e0f2fe; /* light blue for unread */
  font-weight: 500; /* subtle emphasis */
}

.notification .timestamp {
  display: block;
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

body.dark .notification {
  background: #1f2937;
  border-color: #374151;
  color: #f9fafb;
}

body.dark .notification.unread {
  background: #1e40af33; /* slightly more visible than #2563eb33 */
  color: #f9fafb;
}

/* Ensure profile avatar size is reasonable */
.user-dropdown .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

/* PROFILE PICTURE */
.profile-picture-upload {
  position: relative;
  width: 70px;
  height: 70px;
}

.profile-picture-upload img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

/* Hover overlay */
.profile-picture-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 11px;
  text-align: center;
  padding: 3px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: 0.2s;
}

.profile-picture-upload:hover .profile-picture-overlay {
  opacity: 1;
}

.profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  margin-bottom: 10px;
}

/* LAYOUT */
.profile-container {
  max-width: 900px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 10px; /* reduced gap between cards/sections */
}

/* HEADER */
.profile-header {
  display: flex;
  align-items: center;
  gap: 10px; /* slightly tighter */
  padding: 15px;
}

.profile-section {
  padding: 15px;
  margin-bottom: 10px; /* reduced spacing between sections */
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px; /* smaller gap between inputs */
  margin-bottom: 15px;
}

.form-fields input {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9fafb;
  transition: all 0.2s ease;
}

.form-fields button {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  background: #3498db;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.profile-picture-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

/* NAVBAR PROFILE PICTURE FIX */
#navProfilePicture {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  font-size: 14px;
  margin-right: 8px;
  border: 2px solid #eee;
}

/* Ensure button aligns properly */
.user-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 90px;
}

.login-logo {
  height: 90px;
}

/* ============================= */
/* COLOR VARIABLES */
/* ============================= */
:root {
  --primary-color: #FFD93D;   /* happy face yellow */
  --secondary-color: #FF6B6B; /* mouth / accent red */
  --accent-color: #4ECDC4;    /* eyes / optional accent */
  --bg-color: #FFFFFF;         /* app background */
  --text-color: #333333;       /* main text color */
  --navbar-bg: var(--primary-color);
  --button-bg: var(--secondary-color);
  --button-text: #FFFFFF;
  --input-border: #CCCCCC;
  --card-bg: #FFF8E1;
  --hover-color: var(--accent-color);
}

/* ============================= */
/* COLOR VARIABLES */
/* ============================= */
:root {
  --primary-color-start: #1E62FF;  /* blue from logo */
  --primary-color-end: #2CD3C4;    /* teal from logo */
  --accent-color: #FFD93D;         /* yellow spark */
  --bg-color: #FFFFFF;
  --text-color: #333333;
  --navbar-bg: linear-gradient(90deg, var(--primary-color-start), var(--primary-color-end));
  --button-bg: var(--primary-color-start);
  --button-text: #FFFFFF;
  --input-border: #CCCCCC;
  --card-bg: #F0F9FF;
  --hover-color: var(--primary-color-end);
}

/* ============================= */
/* GLOBAL ELEMENT STYLES */
/* ============================= */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color-start);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--hover-color);
}

button:hover {
  background: rgba(30, 98, 255, 0.06);
  transform: translateY(-1px);
}

input, select, textarea {
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 6px 10px;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary-color-start);
}

.navbar {
  position: relative;
  width: 100%;
  background: var(--navbar-bg);
  color: var(--button-text);
  padding: 12px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 16px;
  margin: 12px 0;
}

.custom-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  font-size: 14px;
}

.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast.error {
  background: #e74c3c;
}

.custom-toast.success {
  background: #2ecc71;
}

#toast-container {
  pointer-events: none;
}

.custom-toast {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  pointer-events: auto;
}

/* Animation */
.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Types */
.custom-toast.success {
  background: #16a34a;
}

.custom-toast.error {
  background: #dc2626;
}

.custom-toast.info {
  background: #2563eb;
}

.custom-toast.warning {
  background: #f59e0b;
}

.toast-icon {
  font-weight: bold;
}

/* =========================
   TOASTS
========================= */
#toast-container {
  pointer-events: none;
}

.custom-toast {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.25s ease;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.custom-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast.success { background: #16a34a; }
.custom-toast.error { background: #dc2626; }
.custom-toast.info { background: #2563eb; }
.custom-toast.warning { background: #f59e0b; }

/* =========================
   MODAL
========================= */
.ui-overlay {
  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;
  z-index: 10000;
}

.ui-modal {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
}

.ui-modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.ui-confirm {
  background: #16a34a;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
}

.ui-cancel {
  background: #e5e7eb;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
}

/* =========================
   LOADER
========================= */
.ui-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.ui-loader-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ui-confirm-overlay {
  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;
  z-index: 9999;
}

.ui-confirm-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
}

.ui-confirm-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.ui-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cancel-btn {
  background: #ccc;
}

.confirm-btn {
  background: #e74c3c;
  color: white;
}
.ui-confirm-danger {
  background: #ef4444;
  color: white;
}

.ui-confirm-danger:hover {
  background: #dc2626;
}

.ui-confirm-primary {
  background: #3b82f6;
  color: white;
}

.ui-confirm-primary:hover {
  background: #2563eb;
}

.ui-confirm-success {
  background: #16a34a;
  color: white;
}

.ui-confirm-success:hover {
  background: #15803d;
}

.ui-confirm-cancel {
  background: #e5e7eb;
  color: #111;
}

/* ============================= */
/* DEFAULT (DESKTOP) */
/* ============================= */

.bottom-nav {
  display: none; /* hidden on desktop */
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 750px) {
  .nav-links {
    display: none; /* hide only the full menu, NOT header */
  }

  .login-logo {
    height: 50px; /* optional scaling for mobile */
  }

  /* show bottom nav on mobile */
  .bottom-nav {
    display: flex;
  
}

  /* optional: adjust spacing since header is gone */
  .container {
    padding-top: 20px;
  }
}

@media (max-width: 750px) {
  .container {
    padding-bottom: 90px;
  }
}

.bottom-nav .nav-btn {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
}


.bottom-nav .nav-btn span:last-child {
  font-size: 12px;
}

.bottom-nav button span {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 3px;
}

.bottom-nav button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.bottom-nav button:active {
  transform: scale(0.97);
}

.dropdown-menu.show {
  display: flex !important;
  flex-direction: column;
}

.mobile-header {
  display: none;
}

/* MOBILE ONLY */
@media (max-width: 750px) {

  .mobile-nav-btn {
  flex: 1;
  max-width: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );

  color: #fff;

  padding: 12px 8px;

  font-size: 14px;
  font-weight: 600;

  gap: 4px;

  transition: transform 0.15s ease, opacity 0.15s ease;
}

  .mobile-nav-btn span {
    font-size: 12px;
  }

  .mobile-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  }

  .mobile-header button {
    font-size: inherit;
  }
}

.dropdown-logo-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.dropdown-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.mobile-header {
  display: none;
}

/* ============================= */
/* MOBILE */
/* ============================= */
.mobile-header {
  display: none;
}

/* ============================= */
/* MOBILE */
/* ============================= */
/* ============================= */
/* MOBILE HEADER */
/* ============================= */

.mobile-header {
  display: none;
}

@media (max-width: 750px) {

  .app-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #fff;
    border-bottom: 1px solid #ddd;

    padding: 8px 12px;
    box-sizing: border-box;

    z-index: 9999;
  }

  /* LEFT LOGO */
  .mobile-logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 70px;
    min-width: 70px;

    flex-shrink: 0;
  }

  .mobile-logo {
      height: 64px;
      width: auto;
      object-fit: contain;
    }

  /* CENTER ACTIONS */
  .mobile-actions {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;
  }

  .mobile-nav-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
  }

  .container {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .bottom-nav {
    display: flex;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  #profileLink {
    display: none;
  }
}

.mobile-nav-btn.profile-btn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.mobile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================= */
/* NAV BUTTON SYSTEM (UNIFIED) */
/* ============================= */

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: none;
  background: none;

  padding: 10px 12px;
  border-radius: 12px;

  font-size: 14px;
  color: #111;

  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;

  flex: 1 1 auto;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.nav-btn span {
  font-size: 12px;
}

.nav-btn img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
}

.nav-btn-desktop {
  align-items: center;
  justify-content: center;

  border: none;
  background: none;

  padding: 10px 12px;
  border-radius: 12px;

  font-size: 14px;
  color: #111;

  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;

  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-btn-desktop span {
  display: flex;
  flex-direction: column;
}

.nav links{
  width: 22px;
}

.nav-btn,
.nav-btn-desktop,
.bottom-nav button,
.mobile-header button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.nav-btn-desktop,
.nav-btn {
  position: relative;
}

.nav-badge {
  position: absolute;

  top: 2px;
  right: 6px;

  min-width: 18px;
  height: 18px;

  padding: 0 5px;

  border-radius: 999px;

  background: #ef4444;
  color: white;

  font-size: 11px;
  font-weight: 700;

  display: none;

  align-items: center;
  justify-content: center;
}

.mobile-alert-btn,
.nav-btn-desktop {
  position: relative;
}

.avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #007bff;
  color: white;
  font-weight: 700;
  font-size: 16px;

  flex-shrink: 0;
}