@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

body {
  margin-left: 80px;
  margin-top: 80px;
  transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

main {
  padding: 20px;
}

h1 {
  font-size: 2em; /* Default size */
  margin-bottom: 10px;
  color: #333;
  text-align: center; /* Center the text horizontally */
  margin-top: 20px; /* Adjust top margin as needed */
}

h2 {
  font-size: 2em; /* Default size */
  margin-bottom: 10px;
  color: #333;
}

p {
  font-size: 1em; /* Default size */
  color: #666;
  line-height: 1.6;
}

/* Responsive font sizes */
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 1.8em; /* Adjust as needed */
  }
  h2 {
    font-size: 1.8em; /* Adjust as needed */
  }
  p {
    font-size: 0.9em; /* Adjust as needed */
  }
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 1.6em; /* Adjust as needed */
  }
  h2 {
    font-size: 1.6em; /* Adjust as needed */
  }
  p {
    font-size: 0.85em; /* Adjust as needed */
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.4em; /* Adjust as needed */
  }
  h2 {
    font-size: 1.4em; /* Adjust as needed */
  }
  p {
    font-size: 0.8em; /* Adjust as needed */
  }
}

header {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.489);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 200;
}

.logo-right {
  position: absolute;
}

.icon__menu {
  width: 50px;
  height: 100%;
  color: #453b3b;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(10px);
}

.icon__menu i {
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}

.menu__side {
  width: 80px;
  height: 100%;
  background: hsl(111, 38%, 56%);
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  font-size: 18px;
  z-index: 300;
  overflow: hidden;
  overflow-y: scroll;
  border-right: 20px solid hsl(111, 38%, 56%);
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.menu__side::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.menu__side {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.name__page {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.name__page i {
  width: 20px;
  margin-right: 20px;
}

.options__menu {
  padding: 20px 30px;
  position: absolute;
  top: 80px;
}

.options__menu a {
  color: #ffffffb2;
  cursor: default;
  display: block;
  position: relative;
  transition: color 300ms;
}

.options__menu a:hover {
  color: white;
}

.options__menu .option {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  position: relative;
}

.options__menu .option i {
  width: 20px;
  margin-right: 20px;
  cursor: pointer;
}

.options__menu .option h4 {
  font-weight: 300;
  cursor: pointer;
}

a.selected {
  color: #fff;
}

.selected:before {
  content: "";
  width: 3px;
  height: 80%;
  background: white;
  position: absolute;
  top: 10%;
  left: -30px;
}

.body_move {
  margin-left: 250px;
}

.menu__side_move {
  width: 250px;
}

@media screen and (max-width: 760px) {
  .body_move {
    margin-left: 0px;
  }

  .menu__side_move {
    width: 80px;
    left: -80px;
  }
}

.btn {
  --color: #23ce3ac2;
  --color2: rgb(245, 245, 245);
  padding: 0.8em 1.75em;
  background-color: transparent;
  border-radius: 6px;
  border: 0.3px solid var(--color);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 300;
  font-size: 12px;
  font-family: "Roboto", "Segoe UI", sans-serif;
  text-transform: uppercase;
  color: var(--color);
  margin-top: 10px;
}

.btn::after,
.btn::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: var(--color);
}

.btn::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.btn:hover {
  color: var(--color2);
}

.btn:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

button#nvcon {
  margin-top: 10px; /* Adjust the margin as needed */
}

header {
  display: flex;
  align-items: center;
}

.logo-container {
  margin-left: auto;
  margin-right: 300px; /* Adjust this value as needed */
  margin-bottom: auto;
  margin-top: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
}

.card {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: left;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.card p {
  margin: 5px 0;
}

.actions a {
  display: inline-block;
  margin-right: 10px;
  color: blue;
  text-decoration: none;
  font-size: 0.9em;
}

.actions a.disabled {
  color: grey;
  pointer-events: none;
}
