* {
  margin: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
  background-color: #008181;
  font-family: Tahoma, sans-serif;
  overflow: hidden;
}

footer {
  display: flex;
  align-items: center;
  height: 30px;
  background-color: #c0c7c8;
  border-top: 2px solid #ffffff;
  font-size: 14px;
  padding: 0 3px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.logo {
  background: linear-gradient(to bottom, #dfdfdf, #a0a0a0);
  border: 2px outset #fff;
  padding: 2px 4px;
  margin-right: 4px;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: black;
  cursor: pointer;
  height: 25px;
}

.logo:hover {
  background: linear-gradient(to bottom, #e0e0e0, #b0b0b0);
}

.logo img {
  width: 20px;
  margin-right: 5px;
}

.start-menu {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 200px;
  background-color: #C0C0C0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid gray;
  border-right: 2px solid gray;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 99;
}

.start-menu ul {
  list-style: none;
  padding: 4px;
  margin: 0;
}

.start-menu li {
  font-size: 13px;
  color: black;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  /* padding: 4px 6px; */
}

.start-menu li img {
  width: 40px;
  height: 40px;
}

.start-menu li:hover {
  background-color: navy;
  color: white;
}

.taskbar-apps {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
  overflow-x: auto;
}

.taskbar-button {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #dfdfdf, #a0a0a0);
  border: 2px outset #fff;
  padding: 2px 12px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  height: 25px;
  white-space: nowrap;
}

.taskbar-button img {
  height: 18px;
  margin-right: 6px;
}

.taskbar-button:hover {
  background-color: #aaa;
}

.zegar {
  background-color: #C0C0C0;
  border-top: 2px solid white;
  border-left: 2px solid white;
  border-bottom: 2px solid gray;
  border-right: 2px solid gray;
  font-size: 13px;
  width: 65px;
  height: 25px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  cursor: default;
}

.pulpit {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.icon {
  width: 70px;
  margin-left: 10px;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}

.icon img {
  width: 38px;
  height: 38px;
}

.icon span {
  display: block;
  font-size: 12px;
  color: white;
  text-shadow: 1px 1px black;
}

/* ------------------------------------CONTEXT EMNU-------------------------------------------- */

#context-menu {
  position: absolute;
  background-color: #e0e0e0;
  border: 2px outset #fff;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  padding: 4px 0;
  font-family: "Tahoma", sans-serif;
  font-size: 14px;
  list-style: none;
  display: none;
  z-index: 2000;
  width: 160px;
}

#context-menu li {
  padding: 4px 10px;
  cursor: pointer;
  position: relative;
}

#context-menu li:hover {
  background-color: navy;
  color: white;
}

/* ---- SUBMENU ----*/
.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 1px;
  background-color: #e0e0e0;
  border: 2px outset #fff;
  padding: 4px 0;
  list-style: none;
  width: 190px;
  z-index: 2100;
  color: black;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 4px 10px;
  cursor: pointer;
}

.submenu li:hover {
  background-color: navy;
  color: white;
 
}

.menu-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-item-row .label {
  flex-grow: 1;
  margin-left: 4px;
}

.menu-item-row .arrow {
  font-size: 14px;
}


.submenu .podmenu img{
  width: 20px !important;
  height: 20px !important;
}
.sex{
  display: flex;
  justify-content: space-between;
}
/* .cipka img{ 
  width: 20px !important;
  height: 20px !important;
} */

