body {
    background-color: #8ce7eb;
    font-family: 'Trebuchet MS', sans-serif;
    background-image: url('dfgdfgdfgdfgdf.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    
  }
  
  .welcome {
    border-radius: 10px;
    border: 4mm ridge rgba(11, 223, 141, 0.6);
    width: fit-content;
    padding: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #8ce7eb;
    flex-direction: column;
    z-index: 100;
  }
  
  .welcome h1 {
    margin: 4px;
  }

.bar{
    position: absolute;
     width: 100%; 
     display: flex; 
     backdrop-filter: blur(10px); 
    background-color: rgba(0, 4, 255, 0.616);
     color: #fff;
      justify-content:space-around;
      z-index: 1000;
}

.white-trans-left{
    margin-left: 16px;
    background-color: rgba(249, 80, 255, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}

.white-trans-right{
    margin-right: 16px;
    background-color: rgba(249, 80, 255, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}
.white-trans-mid{
    margin-right: 16px;
    margin-left: 16px;
    background-color: rgba(124, 214, 21, 0.6);
    padding: 4px 12px;
    border-radius: 16px;
}
.welcomeheader{
    width: 100%;
    display: flex;
    align-items: center;
    cursor: move;
    justify-content: center;
    margin-top: 8px;
    background-color: gray;
    border-radius: 6px;
}
.close{
    width: fit-content;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin-top: 8px;
    background-color: red;
    border-radius: 6px;

}
.open{
    width: fit-content;
    display: flex;
    cursor: pointer;
    justify-content: center;
    margin-top: 8px;
    background-color: greenyellow;
    border-radius: 6px;
    height: 26px;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    border:2mm ridge rgb(53, 221, 19);
    padding: 0px 2px;
    height: 18px;
    line-height: 1
}
.taskbar{
    position: fixed;
    bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
     width: 100%; 
     display: flex; 
     backdrop-filter: blur(10px); 
    background-color: rgb(114, 114, 114);
     color: #696969;
      justify-content:space-around;
      border-color: black;
      border:4mm ridge black;
}


.selected {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.8);
    border-radius: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.contact-card.yt { background: #ff0000; }
.contact-card.gh { background: #24292e; }
.contact-card.discord { background: #5865F2; }
.contact-card.email { background: #333333; }

.copy-btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.desktop-icon {
    text-align: center ;
    pointer-events: auto;
    padding: 16px;
    filter: drop-shadow(0 0 8px black);
    width: fit-content;
    cursor: grab;
    user-select: none;
    position: absolute;
}

.desktop-icon:active {
    cursor: grabbing;
}

#terminal {
    background-color: #0a0a0a;
    border-color: rgba(0, 255, 136, 0.5);
}

#terminal #terminalheader {
    background-color: #1a1a1a;
    color: #00ff88;
}

#terminal .close {
    background-color: #330000;
    color: #ff6b6b;
}

.terminal-body {
    background-color: #000000;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    padding: 12px;
    border-radius: 8px;
    height: 220px;
    overflow-y: auto;
    text-align: left;
    font-size: 13px;
    border: 1px solid #222;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.terminal-input-line input {
    background: transparent;
    border: none;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    outline: none;
    width: 100%;
}

.taskbar-tab {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease;
}

.taskbar-tab:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.taskbar-tab.active {
    background-color: rgba(0, 255, 136, 0.4);
    border-color: #00ff88;
}

.theme-btn {
    padding: 8px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: white;
}

#desktopApps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through empty desktop space */
}