@import './reset.css';
@import './fonts.css';
@import './menu.css';

body {
  font-family: "Inter";
	height: calc(100vh - 30px);
	display: flex;
  gap: 20px;
	flex-direction: column;
	justify-content: space-between;
  padding: 15px 18px;
}

.header {
	display: flex;
	align-items: center;
	gap: 6px;
}

.header__logo {
  width: 28px;
	height: 28px;
}

.header__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header__title {
  font-size: 14px;
  font-weight: 800;
}

.header__title--blue {
  color: #24207f;
}

.header__local {
  color: #c0bfda;
  font-size: 12px;
  font-weight: 700;
}

.nav {
  display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__button {
  color: #ffffff;
	background-color: #6f6cac;
  border: none;
	border-radius: 4px;
  padding: 6px 7px;
	font-size: 10px;
	font-weight: 800;
	box-shadow: 0px 2px 4px rgb(0 0 0 / 20%);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.nav__button[data-active="true"] {
  color: #6f6cac;
  background-color: #ffffff;
  border: 1.75px solid #6f6cac;
}

.main {
  display: flex;
	flex-direction: column;
  gap: 20px;
	height: calc(100% - 73px);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(15px); /* Starts slightly pushed down */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Ends in its normal position */
  }
}
