@font-face {
    font-family: "ComicNeue";
    src: url("ComicNeue-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
    background: #008080;
    height: 100vh;
    overflow: hidden;
    cursor: url('cursor.png') 0 0, auto;
}

.icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 12px;
}

.window {
    position: absolute;
    top: 80px;
    left: 20px;
    width: 300px;
    background: #ccc;
    border: 2px solid #333;
}

.titlebar {
    background: #003366;
    color: white;
    padding: 4px 8px;
    cursor: move;
    display: flex;
    justify-content: space-between;
}

.close-btn {
    cursor: pointer;
}

.content {
    padding: 10px;
    background: white;
}

.calc-window {
  width: 220px;
}

.calc-display {
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
  margin-bottom: 8px;
  text-align: right;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  border: 2px inset #eee;
}

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

.calc-grid button {
  padding: 10px 0;
  font-size: 14px;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  background: #ccc;
  border: 2px outset #eee;
  cursor: pointer;
}

.calc-grid button:active {
  border-style: inset;
}

.calc-zero {
  grid-column: span 2;
}

.calc-equals {
  background: #003366 !important;
  color: white;
}

.contact-anme {
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 10px 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 8px;
  background: #eee;
  border: 1px solid #999;
  font-size: 12px;
}

.contact-label {
  font-weight: bold;
  color: #003366;
}

.contact-value {
  color: #333;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #003366;
  border-top: 2px solid #333;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 6px;
}

.start-wrap {
  position: relative;
}

.start-menu {
  position: absolute;
  bottom: 42px;
  left: 0;
  width: 160px;
  background: #ccc;
  border: 2px solid #333;
}
 
.menu-item {
  padding: 8px 10px;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  font-size: 12px;
  cursor: pointer;
  background: white;
}
 
.menu-item:hover {
  background: #003366;
  color: white;
}

.start-btn {
  background: #ccc;
  border: 2px outset #eee;
  padding: 4px 12px;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  font-size: 12px;
  cursor: pointer;
}
 
.start-btn:active {
  border-style: inset;
}
 
#tasks {
  display: flex;
  gap: 6px;
}

.clock {
  margin-left: auto;
  color: white;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  font-size: 12px;
  padding: 4px 10px;
  border: 2px inset #eee;
}
 
.task-btn {
  background: #ccc;
  border: 2px inset #eee;
  padding: 4px 10px;
  font-family: "Comic Sans MS", "Comic Sans", "ComicNeue";
  font-size: 12px;
  cursor: pointer;
}
