html {
  scroll-behavior: smooth;
}

  .widget-container {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

h2 {
    color: #fff428;
    word-wrap: normal;
	  font-size: 20px;
	  -webkit-text-stroke: 1px black;
	  -webkit-text-fill-color: #fff428;
}
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200;300;400;500;600;700;800&display=swap');

.item {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  
}
  
body {
    background-color: #f2f2f2;
    overflow: hidden scroll;
    background: linear-gradient(to bottom right, #b5e0cd, #ffe9a3);
    background-repeat: no-repeat; 
    background-attachment: fixed;
    color:#ffffff;
    font-family: 'Oxanium', cursive;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }

input, button {
  font-family: 'Oxanium', cursive;
  font-weight: bold;
}
  
  /* Add more shape styles as needed */
  
  #parameters {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    
  }
  
  /* Rest of the CSS styles for the inputs and submit button */
  
  .f-child{
    flex: 1;
  }
  
  
  /* Rest of the CSS styles for the inputs and submit button */
  
  
  
  .widget-container {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
    font-size: large;
    color: black;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    padding: 10px;
    margin-right: 10px;
    background-color: #9dfcff5b;;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .widget h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    
    color: #ffffff;
    text-shadow: 2px 4px 4px rgba(21, 23, 15, 0.6);
    text-align: center;
    line-height: 1.2;
    
    text-overflow: ellipsis;
    
  }
  
  .widget .price {
    font-weight: 700;
  }
  
  .widget img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }
  
  
  
  .input-group {
    margin-right: 20px;
    margin-bottom: 10px;
    flex: 0 0 auto;
  }
  
  .input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
  }
  
  .input-group input[type="text"],
  .input-group input[type="checkbox"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
    margin-right: 10px;
  }
  
  #submitButton {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #submitButton:hover {
    background-color: #45a049;
  }
  
  #submitButton:active {
    background-color: #3e8e41;
    transform: translateY(1px);
  }
  
  ::-webkit-scrollbar {
    width: 8px;
    background-color: #ffeaa300;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #ffeaa300;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #a5fad4;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #98c4ad;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
  .small-image{
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
  }
  .widget .name-label {
    text-align: center;
  }