/* .header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 5px;
    border: 3px solid var(--secondary-color);
    border-radius: 5px;
    width: 95%;
    transition: 2s;
    position: sticky;
    top: 8px;
    background-color: white;
}

.header:hover {
    background-color: rgb(215, 247, 254);
}

.header-logo {
}

.header-menu {
    display: flex;
    list-style: none;
}

.header-menu a {
    text-decoration: none;
}

.header-menu-items {
    margin: 0px 5px;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bolder;
    padding: 5px;
    transition: 0.8s;
}

.header-menu-items:hover {
    background-color: var(--secondary-color);
    color: black;
    border-radius: 5px;
}

.header-button {
    background-color: var(--secondary-color);
    width: 100px;
    height: 30px;
    border-radius: 5px;
    border: 0px;
    transition: 0.8s;
    color: white;
}

.header-button:hover {
    background-color: var(--header-button-hover-color);
    box-shadow: 3px 3px var(--primary-color);
    font-weight: bolder;
    color: black;
}



@media screen and (max-width: 800px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-menu-items {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 600px) {
    .header-menu-items {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 500px) {
    .header-menu-items {
        font-size: 1rem;
    }
} */



.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #343a40;
  padding: 12px 20px;
  color: #fff;
  width: 95%;
    transition: 2s;
    position: sticky;
    top: 8px;
    z-index: 1000;
}

.header-left {
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
}

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

.header-menu li {
  display: inline-block;
}

.header-menu-item {
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s;
}

.header-menu-item:hover {
  background: #495057;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-button {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}

.header-button:hover {
  background: #0056b3;
}


@media screen and (max-width: 800px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-menu-items {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 600px) {
    .header-menu-items {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 500px) {
    .header-menu-items {
        font-size: 1rem;
    }
} 