body.product-upload-page {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    }

    .button:hover, button:hover, input[type=button]:hover, input[type=submit]:hover{
        background: transparent;
    }

    .product-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }
    
     .product-img:hover{
         transform: scale(1.03);
         transition: transform .5s ease;
     }
    
    .carousel-inner{
        overflow: visible;
    }

    footer {
      background: #212529;
      color: #fff;
      padding: 15px 0;
      margin-top: auto;
    }
    footer a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
    }
    footer a:hover {
      text-decoration: underline;
    }

    .logo{
      width: 140px;
      height: auto;
    }

    .carousel-control-next, .carousel-control-prev {
    width: auto;
}

button.carousel-control-prev {
    left: -40px;
}

button.carousel-control-next {
    right: -40px;
}

.carousel-indicators{
  position: static;
    margin-top: 10px;
}

.carousel-indicators [data-bs-target]{
      width: 12px;
    height: 12px;
    border-radius: 50%;
}

@media (max-width: 820px){
    .product-img{
        height: 200px;
    }
}

@media (max-width: 767px) {
  .carousel-control-next, .carousel-control-prev{
    top: auto;
  }

button.carousel-control-next{
  right: 0;
}

button.carousel-control-prev{
  left: 0;
}
  
}

