/* cenniki.css - v.1.7 */

/* === PANEL CENNIKÓW === */
#cennikPanel {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

#cennikPanel.active {
  right: 0;
}

/* === NAGŁÓWEK PANELU === */
#cennikPanel .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--posx-panel-header-bg);
  color: var(--posx-text-light);
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

/* === LISTA CENNIKÓW === */
#cennikList {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

.cennik-item {
  padding: 10px 12px;
  background: var(--posx-bg-light);
  border: 1px solid var(--posx-border-light);
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.cennik-item:hover {
  background: var(--posx-gray);
}

.cennik-item.active {
  background: var(--posx-orange);
  color: var(--posx-text-light);
}

/* === FORMULARZ DODAWANIA CENNIKA === */
.add-cennik-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

.add-cennik-form h3 {
  color: var(--posx-orange);
  font-size: 20px;
  margin-bottom: 5px;
}

.add-cennik-form label {
  font-weight: bold;
  color: var(--posx-text-dark);
}

.add-cennik-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--posx-border-light);
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  color: var(--posx-text-dark);
}

/* === FORMULARZ DODAWANIA PRODUKTU === */
.product-form {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-form input {
  flex: 1;
  min-width: 110px;
}

.product-form #addProductBtn {
  width: 50px;
  height: 50px;
  font-size: 22px;
  font-weight: bold;
  padding: 0;
}

/* === LISTA PRODUKTÓW === */
.product-list {
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid var(--posx-border-light);
  margin-top: 10px;
  padding-top: 10px;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--posx-border-light);
}

.product-item span {
  font-size: 14px;
  color: var(--posx-text-dark);
}

/* === PRZYCISKI AKCJI (DODAJ / EDYTUJ / USUŃ / ZAPISZ) === */
#cennikActions,
.add-cennik-form .btn {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 15px;
  border-top: 1px solid var(--posx-border-light);
}

.add-cennik-form #saveCennikBtn {
  align-self: flex-end;
  margin-top: 15px;
}

/* === KOMUNIKATY SYSTEMOWE W PANELU === */
.panel-msg {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* === SCROLLBARY === */
.product-list::-webkit-scrollbar,
#cennikList::-webkit-scrollbar {
  width: 8px;
}

.product-list::-webkit-scrollbar-thumb,
#cennikList::-webkit-scrollbar-thumb {
  background-color: var(--posx-gray);
  border-radius: 4px;
}

.product-list::-webkit-scrollbar-thumb:hover,
#cennikList::-webkit-scrollbar-thumb:hover {
  background-color: var(--posx-orange);
}

/* cenniki.css - v.1.7 */