/* General Styling */
:root {
  --primary-color: #032bca;
  --secondary-color: #2f3640;
  --text-color: #f5f6fa;
  --background-color: #f5f6fa;
  --card-background: #2c3440;
  --container-width: 1100px;
}

body {
  height: 100vh;
  width: 100vw;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--background-color);
  /* color: var(--text-color); */
  line-height: 1.6;

  padding: 0;
  margin: 0;
}

.main_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  height: 100%;
  width: 100%;
}
.main_bar_ {
  padding-left: 1%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  width: 74%;
}

.search_bar {
  margin-top: 1%;
  padding-right: 1%;
  padding-left: 1%;
  margin-bottom: 3%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;

  height: 7%;
  width: 90%;
}

.Headers_bar {
  margin-bottom: 3%;
  padding-right: 1%;
  padding-left: 1%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;
  width: 40%;
  height: 7%;
}

.Token_bar {
  padding-right: 1%;
  padding-left: 1%;
  margin-top: 1%;
  margin-bottom: 3%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #032bca;
  width: 40%;
  height: 7%;
}


.url_link {
  margin-top: 1px;
  margin-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  margin-right: 3px;
  background-color: #2f36400b;
  font-size: 14px;
}
.platforms {
  margin-top: 3%;
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  border-radius: 20px;
  height: 7%;
  width: 90%;
}
.platform_container_inactive {
  padding-left: 15px;
  margin-right: 10px;
  color: var(--secondary-color);
  background-color: transparent;
  width: 15%;
  height: 90%;
  border: 1px solid var(--primary-color);

  cursor: pointer;
}

.platform_container_active {
  margin-right: 10px;
  padding-left: 15px;
  color: var(--text-color);
  background-color: var(--primary-color);
  width: 15%;
  height: 90%;

  cursor: pointer;
}
.card_software {
  margin-right: 3px;
  margin-bottom: 3px;
  border-radius: 3px;
  background-color: #00000012;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40%;
  width: 20%;
}
.dowanlod_software {
  cursor: pointer;
  margin-bottom: 3px;
  margin-top: 3px;
  color: #b2bec3;
  padding-right: 9px;
  padding-left: 9px;
  padding-top: 2px;
  padding-bottom: 3px;
  background-color: #032bca;
}
.software_image {
  height: 50%;
  width: 70%;
}

.search_bar_input {
  border: 0;
  height: 90%;
  width: 70%;
  background-color: transparent;
}
.search_bar_input:focus {
  border: 0;
  border-radius: 0;
  height: 90%;
  width: 98%;
  background-color: transparent;
}
.software_list {
  overflow-wrap: normal;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 75%;
  width: 95%;
}
.side_bar {
  border-right: 1px solid #b2bec3;
  height: 100%;
  width: 25%;
}
.side_bar_section_icon {
  height: 7%;
  width: 100%;
}
.side_bar_section {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: var(--background-color);
  height: 7%;
  width: 100%;
}
.side_bar_section:hover {
  padding-left: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: #2c344046;
  height: 7%;
  width: 97%;
}
html {
  scroll-behavior: smooth;
}
