:root {
  --main-color: #0d6efd;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
  font-size: 16px !important;
}
h1,
h2,
h3 {
  font-weight: bold !important;
}
h1 {
  color: var(--main-color);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 22px !important;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 15px;
}
:active {
  box-shadow: none;
  border: none;
}
#user_name {
  color: var(--main-color);
  font-weight: bold;
}
#main-content {
  width: 1920px;
  max-width: 100%;
  margin: auto;
  padding-bottom: 100px;
}
.bg-main {
  background: var(--main-color);
}
.btn-login {
  transition: all 0.3s ease-in-out;
}
.btn-login:hover {
  background-color: none !important;
  color: var(--main-color) !important;
}
input:focus {
  border: 1px solid var(--main-color) !important;
  box-shadow: 0 0 10px var(--main-color) !important;
}
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-image: url("https://fierseafood.com/wp-content/uploads/2024/01/bg31.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
}
.login-box {
  width: 350px;
  max-width: 90%;
  border: 2px solid var(--main-color);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 150px var(--main-color);
}

/* Spinner */
.spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* Popup - ujednolicona wielkość */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 750px;
  max-width: 95%;
  height: 500px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

/* Zawartość popupu ze scrollowaniem */
.popup-content {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  padding: 20px;
}

/* Przycisk zamykania popupu */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Sekcje wizualne */
#cart,
#selected-user-info,
#search-users-form,
.background-gray {
  background: #f2f2f2;
  padding: 25px;
  margin-bottom: 25px;
}

#users-table-container {
  height: 400px;
  overflow-y: scroll;
}

/* Tabela zamówień */
#order-history-popup table,
#user-details-popup table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

#order-history-popup th,
#order-history-popup td,
#user-details-popup th,
#user-details-popup td {
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}
#order-history-popup td:nth-child(4) {
  max-width: 350px;
}
