html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}






.app-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-item {
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  background-color: #fcfcfc;
  transition: background-color 0.2s ease;
/*  box-shadow: 0px 0px 10px rgba(0,0,0,0.25);*/
}

  .app-item:hover {
    background-color: #f9f9f9;
  }

.app-image {
  width: 130px;
  height: 128px;
  object-fit: cover;
  border-radius: 4px;
}

.app-content {
  display: flex;
  flex-direction: column;
}

.app-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.app-description {
  font-size: 0.9rem;
}

.app-price {
  font-weight: bold;
}

.app-detail {
  font-size: 0.9rem;
  text-decoration: underline;
}






.prvek-se-stinem {
  color: black; /* Barva samotného textu */
  filter: drop-shadow(3px 3px 5px silver); /* X, Y posun, rozostření, barva stínu */
}



form .btn-x {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: white;
  border-color: white;
  border-radius: 5px;
  border-width: 0px;
  font-weight: normal;
  color: black;
}

  form .btn-x:hover {
    background-color: #f0f0f0;
  }

