#emptyCartModal .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#emptyCartModal .modal-content {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#emptyCartModal .modal-title {
  font-size: 1.5em;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

#emptyCartModal .modal-body {
  margin-bottom: 20px;
}

#emptyCartModal .btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#emptyCartModal .btn-secondary {
  background-color: #6c757d;
}
/* Kontak modal */
/* Modal styles */
.modal {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease;
}

.modal-content {
  background-color: whitesmoke;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 70%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.5s ease;
  color: #000000;
  font-family: 'Arial', sans-serif;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover,
.close:focus {
  color: #ddd;
}
.contact-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
/* Kontak modal */
