html, body {
    font-family: "segoe UI", Arial, sans-serif;
    font-size: 14px; 
    width: 100%; 
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
}

  #desktop{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	min-height:100%;
	background: #000;
	background-size: cover;
	z-index: 0;
  }

#tomorrow{
    margin:auto;
    position:fixed;
    top:5px;
    bottom:5px;
    left:5px;
    right:5px;
    color: #eee;
    border: solid 1px #222;
	//background:	url("images/scifi.jpg");
	background-position:center center;
	background-repeat:no-repeat;
	background-size: cover;
	opacity: 0.75;
}

#aftertomorrow{
    height: 20%;
    width: 10%;
    position:absolute;
    top:30%;
    left:45%;
    border: solid 1px #aaa;
	background: url("images/face.svg") no-repeat center center;
	background-size: cover;
	opacity: 0.5;
	transform: scale(0.1);
}


#menu-icon {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s;
}

#left-panel {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100%;
  background-color: #111;
  color: white;
  z-index: 1000;
  padding: 20px;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.6);
  transition: left 0.4s ease;
  overflow-y: auto;
}

#left-panel.open {
  left: 0;
}

.panel-header {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.panel-links {
  list-style: none;
  padding: 0;
}

.panel-links li {
  margin: 10px 0;
}

.panel-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.panel-links a:hover {
  text-decoration: underline;
}


#profile-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s;
}

#login-modal {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.login-content {
  background-color: #222;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #555;
  width: 300px;
  color: white;
  text-align: center;
  border-radius: 6px;
}

#close-login {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

#start-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s;
}

#start-panel {
  position: fixed;
  bottom: -300px;
  left: 20px;
  width: 260px;
  background-color: #111;
  color: white;
  padding: 15px;
  border: 1px solid #444;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transition: bottom 0.4s ease;
}

#start-panel.open {
  bottom: 60px;
}

.start-header {
  font-size: 16px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.start-links {
  list-style: none;
  padding: 0;
}

.start-links li {
  margin: 10px 0;
}

.start-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.start-links a:hover {
  text-decoration: underline;
}

#tools-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.3s;
}

#tools-panel {
  position: fixed;
  bottom: -300px;
  right: 20px;
  width: 260px;
  background-color: #111;
  color: white;
  padding: 15px;
  border: 1px solid #444;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transition: bottom 0.4s ease;
}

#tools-panel.open {
  bottom: 60px;
}

.tools-header {
  font-size: 16px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.tools-links {
  list-style: none;
  padding: 0;
}

.tools-links li {
  margin: 10px 0;
}

.tools-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.tools-links a:hover {
  text-decoration: underline;
}


.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #111;
  color: #eee;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  position: relative;
  box-shadow: 0 0 10px #444;
  font-family: sans-serif;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.2em;
  cursor: pointer;
  color: #888;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  margin-bottom: 10px;
  background: #222;
  color: #ddd;
  border: 1px solid #444;
  padding: 6px;
  border-radius: 4px;
}

.modal-actions {
  text-align: right;
}

.modal-actions button {
  background: #333;
  color: #eee;
  padding: 6px 12px;
  border: none;
  margin-left: 5px;
  border-radius: 4px;
  cursor: pointer;
}
