@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  /* transition: 0.3s; */
  margin: 0;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  /* font-family: Arial, sans-serif; */
  background: #f5f7fa;
  color: #333;
  min-height: 100vh;
}

nav {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 20000;
}

nav .logo-svg {
  width: 150px;
}

button {
  transition: 0.3s;
}

a {
  transition: 0.3s;
}

.tabs a {
  text-decoration: none;
  color: #333;
}

.nav-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.burger {
  display: flex;
  width: 48px;
  height: 36px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  visibility: hidden;
  position: relative;
  z-index: 30001;
  padding: 0;
}

.burger .burger-icon {
  width: 48px;
  height: 48px;
  display: block;
  fill: #363e44;
}

/* .burger span {
  display: block;
  height: 3px;
  background: #363e44;
  border-radius: 2px;
} */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 25000;
  transition: 0.3s;
}

.sidebar.active ~ .sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

.page-content {
  margin-left: 290px;
  padding: 80px 30px 40px;
  flex-grow: 1;
}

.anonymous-layout .page-content {
  margin-left: 0;
  max-width: 1600px;
  align-self: center;
  gap: 15px;
  width: 100%;
  padding: 80px 0px 40px;
}

.page-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #363e44;
}

.page-content h2 {
  color: #171a1c;
  font-size: 24px;
  font-weight: 500;
}

.section-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.notif-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #f5f7fa;
  border-radius: 15px;
  border: 2px solid #e3e6e8;
}

.notif-menu button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
}

.notif-icon {
  width: 16px;
  height: 16px;
}

.notif-dot {
  width: 24px;
  height: 24px;
}

.sidebar {
  z-index: 20000;
  width: 250px;
  height: 85vh;
  background: #fff;
  position: fixed;
  top: 7%;
  left: 1%;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 8px;
  border-radius: 8px;
  cursor: pointer;
  color: #444;
  transition: 0.3s;
}

.sidebar ul li a {
  text-decoration: none;
  color: #444;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-size: 13px;
}

.sidebar ul li:hover,
.sidebar ul li.active {
  background: #0a47c214;
}

.sidebar ul li:hover a,
.sidebar ul li.active a {
  background: transparent;
  color: #00246d;
}

.sidebar ul li.active a {
  font-weight: 600;
}

.sidebar ul li img {
  width: 30px;
}

.sidebar .sidebar-bottom {
  font-size: 13px;
  color: #777;
}

.sidebar-bottom {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.sidebar-bottom a {
  text-decoration: none;
  color: #444;
  display: flex;
  justify-content: start;
  align-items: center;
}

.sidebar-bottom p {
  display: flex;
  justify-content: start;
  align-items: center;
}

.exit-but {
  color: #b81430;
}

table {
  background-color: #fefefe;
  padding: 8px;
  width: 100%;
  border-radius: 8px;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  color: #8f99a3;
  font-weight: 450;
  padding: 14px 10px;
  text-align: center;
}

thead {
  border-bottom: 1px solid #b9bfc6;
}

tbody {
  /* border-top: 1px solid #b9bfc6; */
}

.profile-page thead {
  border-bottom: none !important;
}

.profile-page tbody {
  border-top: none !important;
}

td {
  padding: 14px 10px;
}

tr span {
  color: #fff6e5;
  padding: 4px;
  border-radius: 8px;
}

.badge-in-work {
  background-color: #e09706;
  text-wrap: nowrap;
}

.badge-decline {
  background-color: #b81430;
}

.badge-done {
  background-color: #24a87c;
}

td a {
  padding: 8px;
  color: #e5eeff;
  background-color: #8090b2;
  border-radius: 8px;
  text-decoration: none;
}

#notif-panel {
  position: fixed;
  top: 10%;
  right: 20px;
  width: 400px;
  height: 85vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: none;
  z-index: 100;
  border-radius: 16px;
  margin-right: 0;
  transform: translateX(120%);
  will-change: transform;
  overflow-y: scroll;
}

#notif-panel h3 {
  font-weight: 600;
  font-size: 18px;
}

#notif-panel ul {
  margin-top: 30px;
  padding-left: 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}

#notif-panel ul li {
  list-style: none;
  padding: 12px;
  background-color: #f8f2f3;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  position: relative;
}

#notif-panel ul li h4 {
  color: #363e44;
  font-size: 16px;
  font-weight: 500;
}

#notif-panel ul li .li-but {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 14px;
  color: white;
  padding: 12px;
  border-radius: 8px;
  background-color: #0039f5;
  font-weight: 450;
}

#notif-panel ul li a {
  font-size: 14px;
  color: white;
  padding: 12px;
  border-radius: 8px;
  background-color: #0039f5;
  font-weight: 450;
  cursor: pointer;
}

.urgently-notif {
  background-color: #ffe6ea !important;
}

.urgently-notif h4 {
  color: #b81430 !important;
}

.h-number {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.notif-number {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background-color: #0039f5;
  border-radius: 10000px;
  color: white;
}

.close-notif {
  position: absolute;
  top: 3px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 35px;
  cursor: pointer;
}

#notif-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  background-color: #dde1e4;
  width: max-content;
  padding: 6px;
  border-radius: 10px;
}
.tab {
  padding: 11px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.3s;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.55);
}

.tab.active {
  background: white;
  box-shadow: 0 2px 4px 0 rgba(153, 165, 173, 0.5);
}

/* .tab-content {
  display: none;
} */
.tab-content.active {
  display: block;
}

.profile-page .tab-content.active {
  display: grid !important;
}

footer {
  margin-left: 290px;
  padding: 0px 30px 40px;
  /* bottom: 5%; */
  /* position: fixed; */
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* width: 100%; */
}

.anonymous-layout nav {
  width: 100%;
  max-width: 1600px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  padding: 10px 0px 0px 0px;
}

.anonymous-layout footer {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0px 0px 40px 0px;
}

footer a {
  text-decoration: none;
  color: #394046;
  /* padding-right: 350px; */
}

footer p {
  color: #394046;
}
