@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

html {
  display: flex;
  justify-content: center;
}

body {
  padding: 20px;
  max-width: 1000px;
  width: 100%;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  padding: 0px;
  margin: 0px;
  font-weight: normal;
}

button {
  padding: 7px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  outline: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  background: #edefff;
}

button:hover {
  background: #e4e7fc;
}

button.secondary {
  background: #1f1f1f;
  color: #ffffff;
}

button.secondary * {
  stroke: #ffffff;
}

button.success {
  background: #e9ffc6;
}

input {
  height: 38px;
  padding: 7px;
  outline: none;
  border: none;
  border: 1px solid #ededed;
  border-radius: 7px;
  font-size: 14px;
  width: 70%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-title {
  font-size: 20px;
  font-weight: 500;
  color: rgb(46, 46, 46);
}

.account-menu {
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 12px;
  border-radius: 12px;
  background: #333333;
  color: #ffffff;
  cursor: pointer;
  position: relative;
}

.account-menu .logout-layout {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: #ffc3c3;
  color: #292d32;
  opacity: 0;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.account-menu:hover .logout-layout {
  opacity: 1;
}

.account-menu img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
}

.account-menu .details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-menu .details .role {
  font-size: 12px;
  opacity: 0.6;
}

ul {
  margin: 0px;
  padding: 0px;
  position: static;
  list-style: none;
}

.bold {
  font-weight: 500;
}

.avatar {
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  background: #e8f8ff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.avatar svg {
  width: 18px;
  height: 18px;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  visibility: hidden;
}

.card {
  padding: 30px;
  background-color: #fff;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  padding: 0px 5px;
  background: #002a3e;
  color: #ffffff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
