body {
    margin: 0;
    padding: 0;
  }
  
  .taskbar {
    display: flex;
    background-color: #333;
    color: #fff;
    justify-content: space-around;
    align-items: center;
    height: 60px;
  }
  
  .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  
  .icon img {
    width: 30px;
    height: 30px;
  }
  
  .icon span {
    margin-top: 5px;
    font-size: 12px;
  }
  
  .active {
    background-color: #555;
  }
 .linkhrefcolor {
    color: cyan;
 }
 .icon:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
.language-switcher {
  position: relative;
}

.dropdown {
  display: inline-block;
  position: relative;
  left: 1700px;
}

.dropbtn {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #333;
  border: 1px solid #ddd;
  transition: background-color 0.3s ease;
  color: cyan;
  position: relative;
}
/* ... Your existing CSS rules ... */

/* Add class for flag icons */
.flag-icon {
  display: inline-block;
  width: 24px;
  height: 16px;
  background-size: cover;
  position: absolute;
  right: 15px;
}

.flag-icon-pl {
  background-image: url('../image/pl_flag.png');
  left: 90px;
}

.flag-icon-en {
  background-image: url('../image/en_flag.png');
  left: 90px;
}

.dropdown-content {
  position: absolute;
  background-color: #242424;
  color: cyan;
  min-width: 142px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0; /* Initial opacity set to 0 */
  transform: translateY(-10px); /* Initial position above the element */
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex; /* Display children elements in a flex container */
  flex-direction: column; /* Set the direction of the columns to vertical */
}

/* Adjust the style for each item in the dropdown */
.dropdown-content a {
  padding: 12px 26px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover style for each item in the dropdown */
.dropdown-content a:hover {
  background-color: #f1f1f177;
}

.show {
  opacity: 1; /* Change opacity to fully visible when the dropdown is shown */
  transform: translateY(0); /* Move the dropdown to its original position */
}
