body {
            background-image: url('https://img.troutlake.co/bg.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
.container {
            background-color: rgba(255, 255, 255, 0.9); /* White background with 90% opacity */
            padding: 20px; 
            border-radius: 10px;
        }

.carousel .carousel-item{
height: 350px;
}
.carousel-inner img {
    animation: panZoom 90s infinite alternate;
}


@keyframes panZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(3) translate(-30%, -60%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.button {
    background-color: #04AA6D; /* Green */
    border-radius: 4px;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
  }  
  .button:hover {
    background-color: white; /* Green */
    color: #04AA6D;
  }

  .payment_img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .btnwiggle{
    animation: 1s wiggle ease 2;
  }
  @keyframes wiggle {
    0% {
      transform: rotate(-3deg);
    }
    20% {
      transform: rotate(20deg);
    }
    40% {
      transform: rotate(-15deg);
    }
    60% {
      transform: rotate(5deg);
    }
    90% {
      transform: rotate(-1deg);
    }
    100% {
      transform: rotate(0);
    }
  }


.current-item {
  font-weight: bold;
}
.admin-item {
  color: #550000 !important;
}

ul.userinfo{
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.userinfo li{
  /* display: inline; */
  padding: 0px;
  margin: 0px;
  font-size: 11px;
}

ul.file_list li {
  list-style-type: none;
}


ul#wx {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
ul#wx li {
  font-size: 13px;
  margin: 5px;
  padding: 5px;
  display: block;
  border: solid 1px #DDD;
  border-radius: 10px; /* Rounded corners */
}

#to {
  width: 100%;
}
#subject {
  width: 100%;
}
