body {
    overflow-x: hidden; /* Hide scrollbars */
  }

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    position: relative;
    border-radius: 10px;

    margin-top: 20px;
  }

.active {
    border-radius: 10px 10px 0 0;
}

#maincontent {
    margin-top: 30vh;
}
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    padding: 0 18px;
    background-color: rgb(226, 226, 226);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    position: relative;
    height: 50vh;
    border-radius: 0 0 10px 10px;
  }

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

header {
    width: 100vw;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, rgb(91, 255, 123), rgb(62, 165, 255));
    margin: none;
    position: absolute;
    top: 0;
    left: 0;
}

header h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }



.name {
    color: rgb(48, 48, 48);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

img {
    border-radius: 7.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 250px;
    width: 250px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: white;
}

.specs {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 300px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(34, 34, 34);
}

.specs button {
    padding: 5px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #444;
    cursor: pointer;
}