.startMenu {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 350px;
  height: 600px;
  background-color: #f0f0f0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  user-select: none;
}

.searchBar {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
}

.searchBar input {
  flex: 1;
  border: none;
  outline: none;
  margin-left: 10px;
  font-size: 14px;
}

.pinnedApps {
  padding: 10px;
}

.pinnedApps h3 {
  font-size: 12px;
  margin-bottom: 10px;
  color: #666;
}

.appGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.appTile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.appTile:hover {
  background-color: #e0e0e0;
}

.appIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.appName {
  font-size: 12px;
  text-align: center;
}

.allApps {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: white;
}

.allApps h3 {
  font-size: 12px;
  margin-bottom: 10px;
  color: #666;
}

.appList {
  display: flex;
  flex-direction: column;
}

.appListItem {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}

.appListIcon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.appListName {
  font-size: 14px;
}

.footer {
  height: 50px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-top: 1px solid #e0e0e0;
}

.userProfile {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.powerButton {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}

.powerButton:hover {
  background-color: #e0e0e0;
}
