
body {
  font-family: Arial, sans-serif;
  background-color: #f6f6f6;
  margin: 0;
  padding: 0;
}
h1, h2, h3 {
  text-align: center;
  margin-bottom: 20px;
}
.paieska-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.paieska-blokas {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.paieska-blokas input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  width: 250px;
}
.paieska-blokas button {
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  background-color: #1b1b50;
  color: white;
  cursor: pointer;
}
.ikonele {
  background-color: transparent;
  font-size: 20px;
}
.modalas {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.modal-turinys {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  max-height: 80vh;       /* Set maximum height to viewport height */
  overflow-y: auto;       /* Enables vertical scrolling */
}

.modal-turinys textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}
.uzdaryti {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
  display: none;
}

.admin-button {
  padding: 8px 12px;
  background-color: #1b1b50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  margin-left: 10px;
  cursor: pointer;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#krepselis {
  margin: 20px auto;
  max-width: 800px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}
#krepselis ul {
  list-style: none;
  padding-left: 0;
}
#krepselis input[type="number"], #krepselis input[type="text"] {
  width: 60px;
  padding: 4px;
  margin-left: 5px;
}
.krepselio-item {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.krepselio-item button {
  margin-left: 5px;
}
#loginZona, #uzsakymoZona {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}
#loginZona input, #uzsakymoZona input, #uzsakymoZona textarea {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
}

input.komentaras {
  width: 500px;  /* Adjust width as needed */
  height: 10px; /* Adjust height as needed */
  padding: 150px; /* Add padding for better aesthetics */
}

.status-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: bold;
  color: white;
}

.status-uzsakyta {
  background-color: #4CAF50;
  color: white;
}

.status-neuzsakyta {
  background-color: #F44336;
  color: white;
}

.status-atsaukta {
  background-color: #000000;
  color: white;
}

.strikeout {
  text-decoration: line-through;
  color: gray;
}


