body {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: #f8f9fa; /* Lys grå bakgrunn */
}

.card-img-top {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

h1 {
    margin-bottom: 30px;
}

#cart-count {
    font-weight: bold;
    color: #0d6efd; /* Bootstrap primary blå */
}

.fixed-image-container {
  height: 250px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fixed-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

@media (max-width: 767.98px) {
    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .card .btn {
        width: 100%;
    }
}

