:root {
  --shadow-color: rgba(0, 0, 0, 0.1);
  --background-main: rgba(246, 247, 248, 1);
  --brand-blue: rgba(41, 171, 226, 1);
  --brand-dark: rgba(42, 54, 71, 1);
  --brand-active: rgba(9, 25, 49, 1);
  --overlay-background: rgba(0, 0, 0, 0.3);
  --navigation-hover: rgba(42, 61, 89, 1);
}

@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-VariableFont_opsz,wght.ttf");
  font-weight: 100 900;
  font-style: normal;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  position: relative;
  box-sizing: border-box;
  font-family: "Inter";
  font-size: 16px;
  height: 100vh;
  overflow: hidden;
  background-color: var(--background-main);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 168, 168, 1);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7e7e7e;
}

button {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
}

button:disabled {
  opacity: 0.6;
}

button:disabled:hover {
  box-shadow: none;
}

.main {
  background-color: var(--background-main);
  height: calc(100% - 104px);
  width: calc(100% - 232px);
  padding-top: 100px;
  padding-left: 232px;
  display: flex;
  justify-content: flex-start;
}

.button-primary {
  background-color: var(--brand-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  border: 1px;
  border-radius: 10px;
}

.delete-button svg {
  height: 20px;
  width: 20px;
}

.delete-button svg path {
  fill: #ffffff;
}

.btn-with-icon {
  font-size: 21px;
}

.button-primary:hover {
  background-color: var(--brand-blue);
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.button-primary:disabled:hover {
  background-color: var(--brand-dark);
  box-shadow: none;
}

.button-primary:active {
  background-color: var(--brand-active);
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.button-secondary {
  background-color: transparent;
  font-weight: 400;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  border: 1px solid var(--brand-dark);
  border-radius: 10px;
}

.button-secondary:hover {
  border: 1px solid var(--brand-blue);
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.button-secondary:active {
  border: 1px solid var(--brand-active);
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.action-button-text {
  font-size: 21px;
  font-weight: 700;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  background-color: var(--overlay-background);
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-none {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.display-message {
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -161px;
  z-index: 100;
  width: 326px;
  height: 74px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-dark);
  color: white;
  font-size: 20px;
  font-weight: 400;
  animation: fadeIn 200ms;
  transition: opacity 300ms ease-in-out;
}
