
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}


.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(40, 40, 55);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 24px;
  z-index: 999;
}
.nav-bar img {
  height: 40px;
}
.nav-bar h1 {
  color: rgb(27, 157, 205);
  margin: 0 12px;
}
.nav-right-content {
  display: flex;
  align-items: center;
}
.nav-name {
  color: white;
  margin-right: 12px;
}
.nav-profile-pic {
  width: 30px;
  max-height: 30px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 48px;
}

.nav-icon {
  width: 30px;
  max-height: 30px;
  margin-right: 48px;
}
.nav-settings-icon {
  width: 30px;
  max-height: 30px;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 48px;
}
.nav-left-content {
  display: flex;
  align-items: center;
}

.nav-logo {
height: 40px;
margin-right: 0px;
}

.nav-logo, .nav-left-content h1 {
  cursor: pointer;
}

.top-text {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.top-right-text {
  font-size: 18px;
  color: white;
  padding-right: 20px;
}

.body-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 32px;
  margin-top: 70px;
}

header {
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  text-align: center;
}

h1, h2 {
  font-size: 24px;
  color: rgb(40, 40, 55);
  margin-bottom: 16px;
}

.spacer-medium {
  background-color: transparent;
  height: 50px;
}

form {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
}

.form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

label {
  font-weight: 500;
  margin-right: 0.5rem;
}

input {
  flex-grow: 1;
  border: 1px solid #d2d2d2;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

select {
  border: 1px solid #d2d2d2;
  border-radius: 0.5rem;
  padding: 0.5rem;
  flex-grow: 1;
}

button {
  background-color: rgb(27, 157, 205);
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  font-weight: bold;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:disabled {
  background-color: #a2a2a2;
  cursor: default;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 12px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  vertical-align: middle;
}

th {
  background-color: rgb(40, 40, 55);
  color: white;
  justify-content: space-between;
  align-items: center;
}

p {
  font-weight: 300;
  font-size: medium;
}

a {
  color: rgb(27, 157, 205);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/*ANIMATIONS*/


.spin {
  animation: rotation 5s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}