.closeButton {
    justify-content: flex-start;
    cursor: pointer;
    background-color: red; 
    width: 13px; height: 13px; 
    border-radius: 50%;
    margin: 10px;
}

.windowheader {
    user-select: none; 
    cursor: grab; 
    display: flex; 
    justify-content: flex-start; 
    width: 100%; 
    background-color: #180d0d;
    font-size: 15px;
}

.windowheader:active {
    cursor: grabbing;
}

.window {
    position: absolute; 
    background-color: rgb(62, 49, 49);
    border: solid #180d0d;
    width: 500px; 
    border-radius: 16px; 
    padding: 0px; 
    color: white;
    overflow: hidden;
}

.content{
    padding: 10px;
}

.icon {
    user-select: none;
    width: 64px;
    height: 64px;
}

.app {
    cursor: pointer;
    text-align: center;
    padding: 16px;
    filter: drop-shadow(0 0 2px #000);
    width: fit-content;
    color: #ddd;
    user-select: none;
}

.selected {
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 14px;
}

.editor {
    width: 100%;
    height: 100%;
}

.hide {
    display: none;
}

#terminalContent {
    background-color: #000;
    color: #fff;
    border: none;
    width: 100%;
    height: 100%;
    min-height: 30rem;
    resize: none;
    overflow: auto;
    box-sizing: border-box;
    white-space: pre-line;
}

#musicInput::file-selector-button {
    color: white;
    background-color: #000;
}

.terminalStyle {
    color: #fff; 
    background-color: #000;
    font-family: 'Google Sans Code';
    border: none;
    font-size: 16px;
    outline: none;
}

.debug {
    background-color: #666;
}

button {
    color: white; 
    background-color: #000;
}

body {
    background-color: #000; 
    background-image: url(./Images/CricketW.svg); 
    background-size: cover; 
    height: 100vh; 
    background-position: 50%; 
    font-family: 'Noto Sans';
    overflow: hidden;
}