* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body-1);
    line-height: var(--line-height-body-1);
    color: var(--gray-70);
    margin: 0;
    padding: 0;
    background-color: #050612;
    overflow-x: hidden;
}

section {
    padding: 30px;
    max-width: 90%;
    margin: 50px auto;
    border-radius: 20px;
    background: #050612;
    margin-bottom: 100px;
    color: var(--gray-0);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    background: var(--Colors-primary-clr, rgba(114, 108, 249, 1));
    color: var(--Colors-primary-text, rgba(255, 255, 255, 1));
}

@media (min-width: calc(1440px / 0.9)) {
    section {
      max-width: 1440px;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--gray-0);
    border-bottom: 1px solid var(--primary-button-press);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    z-index: 1000;
    transition: background-color 1s;
}

.navbar-logo span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: bold;
  color: var(--gray-0);
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.navbar-link {
  color: var(--gray-0);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.navbar-link:hover {
  color: var(--primary-button-press);
}

.navbar-link.active {
  color: var(--primary-button-text);
}

.navbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-user span {
  font-size: 14px;
  color: var(--gray-0);
}

.navbar-link.logout {
  color: var(--error-text); 
  font-weight: bold;
  margin-left: 20px;
}

.navbar-link.logout:hover {
  text-decoration: underline;
}

.footer {
  background: linear-gradient(90deg, #050612 0%, #01000b 100%);
  color: var(--gray-0);
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  margin: 0 20px;
  margin-bottom: 20px;
}

.footer-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.footer-link {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #726cf9;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary-button-press);
  text-decoration: underline;
}

.blur {
  filter: blur(500px);
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  z-index: -1;
}

.left-blur {
    position: absolute;
    bottom: 200px;
    left: -20%;
    background: #726cf9;
}

.right-blur {
    position: absolute;
    bottom: 300px;
    right: -10%;
    width: 40vh;
    height: 40vh;
    background: #6f02f5;
}

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

::-webkit-scrollbar-track {
  background: #242424; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #726cf9;
  border-radius: 10px;
  border: 3px solid #242424;
}

input,
select {
  padding: 10px 20px;
  border: 1px solid #726cf9;
  border-radius: 10px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  width: 100%;
  margin-bottom: 10px;
}

input :focus,
select :focus {
  border-color: #726cf9;
  outline: none;
  box-shadow: 0 0 5px rgba(114, 108, 249, 0.5);
}

select option {
  background-color: #050612;
}
