.kota-slideout {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.kota-slideout.open {
  pointer-events: auto;
}

.kota-slideout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.kota-slideout.open .kota-slideout-overlay {
  opacity: 1;
  pointer-events: auto;
}

.kota-slideout-content {
  position: absolute;
  top: 50px;
  bottom: 50px;
  right: 20px;
  width: 800px;
  max-width: 95%;
  background: #fff;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.3s ease-in-out;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 20px;
  z-index: 2;
}

.kota-slideout.open .kota-slideout-content {
  transform: translateX(0);
}

.kota-slideout-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin-left: auto;
  margin-bottom: 1rem;
  cursor: pointer;
  color: #666;
}

.kota-slideout-body {
  flex-grow: 1;
  overflow-y: auto;
}



.kota-slideout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.kota-slideout-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.admin-product-info{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #ccc;
}










.kota-admin-button {
  padding: 0.5rem 1rem;
  background-color: #2563eb; /* Tailwind's blue-600 */
  color: #ffffff;
  border: none;
  border-radius: 0.375rem; /* rounded-md */
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 15px;
}

.kota-admin-button:hover {
  background-color: #1d4ed8; /* Tailwind's blue-700 */
}


