:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: #242424;
  background-color: #f9f9f9;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  min-width: 0;
}

html,
body,
.app {
  height: 100%;
  width: 100%;
}

.app.ready {
  box-sizing: border-box;
  padding: 20px 122px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,p {
  margin: 0;
}

.placeholder {
  height: 350px;
  display: flex;
  place-items: center;
  place-content: center;
  gap: 5px;
  flex-grow: 1;

  button {
    border-radius: 4px;
    background: firebrick;
    color: white;
    padding: 6px 8px;
    height: fit-content;

  }
}

.item-wide {
  grid-column: col-start / span 2;
}

.item {
  grid-column: auto;
}

.app.ready header {
  position: sticky;
  top: 20px;
}

.app.ready {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
    "main";
  column-gap: 50px;
}

.app.ready>main {
  grid-area: main;
  display: grid;
  grid-template-areas:
    "aside content"
  ;
  grid-template-columns: 0.5fr 1fr;
  gap: 20px;
  max-width: 1440px;
  width: 100%;
  justify-self: center;
}

fieldset {
  width: fit-content;
  box-sizing:border-box;
}
label:has(input){
  display: block;
}

.setup-ce-wrapper {
  height: 100%;
  width: 616px;
}

.ce-wrapper {
  width: 100%;
  height: 100%;
  min-height:300px;
}

[data-slot='initial-networth-trends'] {
  min-height: 300px;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 10px;
  transition: 0.3s;
  font-size: 14px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.hide-maas-options {
  display: none;
}

.logs {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  color: blue;
  min-width: 60px;
}

.main-content {
  display: flex;
  justify-content: left;
}

.login-section {
  display: flex;
  flex-direction: column;
  max-width:30vw;
  /* width:40vw; */
  height:100vh;
}
.login-section.ready{
  width:100%;
  max-width:100%;
}

.setup-ce-container {
  border: 1px solid #CCCCCC;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.description{
  font-size:14px;
  color:#aaa;
}
form{
  display: flex;
  flex-direction: column;
  gap:4px;
  button{
    width:fit-content;
  }
  details{
    cursor: pointer;
  }
}

/* label:has(select){
  display: flex;
  justify-content: space-between;
  select{
    width:fit-content;
  }
} */
.dropdown-container{
  display: flex;
  justify-content: space-between;
  gap:4px;
  label{
    display: flex;
    flex-direction: column;
  }
}