* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.page-action-container {
  height: 3rem;
  background-color: #00b894;
  display: flex;
  justify-content: start;
  align-items: end;
  padding-left: 1rem;
}

.page-action {
  margin: 0.33rem;
  color: #dfe6e9;
}

.cell-prop-container {
  height: 3rem;
  background-color: #dfe6e9;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.cell-prop-container > * {
  display: inline-block;
  margin: 0.5rem;
  cursor: pointer;
}

.cell-prop-container > select {
  border: none;
  border-radius: 2px;
  outline: none;
}

.font-family-prop {
  padding: 0.2rem;
}

.font-size-prop {
  padding: 0.2rem;
}

.formula-action-container {
  height: 2rem;
  background-color: #dfe6e9;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.formula-action-container > * {
  display: inline-block;
  margin-right: 0.5rem;
}

.formula-action-container > input {
  border: none;
  outline: none;
  height: 70%;
}
.address-bar {
  width: 5rem;
  display: flex;
  justify-content: center;
  text-align: center;
  /* padding: 0.5rem; */
}

.formula-bar {
  width: calc(100vw - 5rem - 0.5rem - 0.5rem - 0.5rem);
}

.sheet-action-container {
  height: 3rem;
  background-color: #dfe6e9;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  gap: 1rem;
}

.sheet-action-container > * {
  display: inline-block;
}

.sheet-add-icon {
  width: 2vw;
}

.sheet-folder-container {
  height: 75%;
  display: flex;
  align-items: center;
  width: 5rem;
  width: calc(100vw - 2vw);
}

.sheet-folder {
  text-decoration: underline;
  font-weight: bold;
  font-size: 1rem;
  text-decoration-thickness: 3px;
}

.grid-container {
  height: calc(100vh - 3rem - 3rem - 2rem - 3rem);
  position: relative;
  overflow: scroll;
  background-color: #dfe6e9;
}

.top-left-dummy {
  width: 2rem;
  height: 2rem;
  background-color: #2d3436;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

.address-column-container {
  position: sticky;
  top: 2rem;
  left: 0;
}

.cells-container {
  position: absolute;
  top: 0;
  left: 2rem;
}

.address-row-container {
  /* width: 10rem; */
  height: 2rem;
  display: flex;
  position: sticky;
  top:0;
  left: 2rem;

}

.address-column {
  height: 2rem;
  width: 2rem;
  border: 1px solid #ced1d4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.address-row {
  height: 2rem;
  width: 5rem;
  border: 1px solid #ced1d4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cell-container{
  display: flex;
}

.cell{
  height: 2rem;
  width: 5rem;
  border: 1px solid #ced1d4;
  outline: none;
  /* padding: 0.1rem; */
}

.color-prop{
  position: relative;
}

.color-prop > input{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
