div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

body,
html {
  margin: 0;
  padding: 0;
}

p,
a {
  font-family: "Titillium Web";
  text-decoration: none;
}

.Screen {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.Store_Section {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  padding-top: 2.5vh;
  background-color: #f5f5f5;
}

.Store_Head {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}

.Store_Head h1 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: clamp(1em, 2vw, 3em);
  color: #151515;
}

.Store_Content {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  height: auto;
  padding-bottom: 5vh;
}

.Module_Container {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 5vh;
}

.Module_Item {
  width: 16.5vw;
  min-width: 19rem;
  height: auto;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px grey;
  margin-right: 1vw;
  margin-top: 1vw;
  overflow: hidden;
}

.MI_Head {
  width: 100%;
  height: 25vh;
}

.MI_Body {
  width: 90%;
  height: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.MI_Head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.MI_Product_Title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: clamp(1em, 1.25vw, 1.5em);
  color: black;
  margin-bottom: 1vh;
  line-height: 1.5;
  min-height: 3em;
}

.MI_Description {
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: clamp(0.8em, 0.8vw, 1em);
  color: #454545;
  margin-top: 1vh;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 7.5em;
  height: 7.5em;
}

.MI_Footer {
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 2.5vh;
  padding-top: 1vh;
  flex-direction: row;
  justify-content: space-between;
}

.MI_More_BTN {
  width: 69%;
  height: 5vh;
  background-color: #606060;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  display: flex;
}

.MI_Add_BTN {
  width: 30%;
  height: 5vh;
  background-color: orangered;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: 0.3s ease;
}

.MI_Add_BTN:hover {
  opacity: 1;
  background-color: green;
  cursor: pointer;
}

.MI_More_BTN:hover {
  background-color: royalblue;
  cursor: pointer;
}

.MI_Add_BTN svg {
  width: 50%;
  height: 50%;
  fill: white;
}

.MI_More_BTN p {
  color: white;
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: clamp(0.8em, 0.9vw, 1em);
}

.Future_Store_Section {
  width: 90vw;
  padding-left: 5vw;
  padding-right: 5vw;
  border-collapse: collapse; /* Rahmen zusammenführen */
  border: 1px solid lightgrey; /* Rahmen um die Tabelle */
}

.Future_Section_Row {
  width: 100%;
}

.Col {
  border: 1px solid lightgrey; /* Rahmen um jede Zelle */
  padding: 10px; /* Innenabstand für bessere Lesbarkeit */
  text-align: left;
  font-family: "Titillium Web";
  background-color: #fff;
  font-size: clamp(1em, 1.2vw, 1.5em);
  text-align: center;
}

.Col_Label {
  font-weight: bold;
}

.Future_Section {
  width: 100vw;
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: border-box;
  background-color: #f5f5f5;
  justify-content: center;
  padding-bottom: 5vh;
}

h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: clamp(1em, 2vw, 3em);
  color: #151515;
}

.available {
  color: green;
}

.pending {
  color: orange;
}

td{
  text-align: center;
  align-items: center;
}

@media (max-width: 600px) {
  .Module_Item {
    margin-bottom: 1vh;
    width: 90%;
  }

  .Store_Head h1 {
    font-size: clamp(1em, 2.5vh, 3em);
  }
}
