* {
  box-sizing: border-box;
}

html {
  font-family:  "Roboto", sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  min-height: 100vh;
}

body {
  margin: 0;
  color: #333;
  font-family: "Roboto", sans-serif;
  min-width: min-content;
  min-height: 100vh;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  width: 100%;
  display: flex;
}

section.dashboard {
  height: 100%;
}

section.content {
  max-width: calc(100vw - 350px);
  padding-inline: 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  min-height: 175px;
}

.header-container :is(company-info, page-info) {
  flex-basis: 40%;
}
#main-wrapper {
  display: flex;
  flex-grow: 1;
}
.menu {
  height: 100%;
}
dashboard-component {
  width: 100%;
  height: 100%;
}
main > p {
  width: 100%;
}

.dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;

  h1 {
    font-weight: normal;
  }
}

h1 {
    font-weight: normal;
    text-align: center;
  }

.topbar-container {
  display: flex;
}

.topbar-container .search-container {
  padding: 0;
}

.title-bar {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #fef7ff;
  width: 100%;
  min-width: fit-content;
  box-sizing: border-box;
}

.box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 500px;
    text-align: center;
    margin: auto;
}

label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
    font-weight: bold;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #6750A4;
    width: 100%;
    font-size: 16px;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}