img {
    border-radius: 35px;
}

body {
    color: white;
    background-image: url("assets/goldengate.webp");
    background-size: cover;
}

body {
    font-family: Helvetica, "Noto Sans", sans-serif;
}

input {
    border-radius: 10px;
}

* {
    box-sizing: border-box;
    padding: 2px;
}

.page-wrap {
    padding: 8px;
    /* padding around all elements together */
    box-sizing: border-box;
    position: absolute;
    top: 15%;
    left: 15%;
    border: solid;
    width: 320px;
    min-width: 240px;
    min-height: 160px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(10px);
    resize: both;
    overflow: auto;
}

.top-bar {
    display: flex;
    padding: 10px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    font-family: Helvetica, "Noto Sans", sans-serif;
    font-size: 16px;
    border-radius: 10px;
}

.top-bar> :last-child {
    margin-left: auto;
}

#musicToggle {
    margin-left: auto;
}

.top-bar>* {
    margin: 0;
}

#time {
    color: white;
}

h1 {
    margin: 2px;
    color: white;
    font-size: 1.4rem;
}

.page-wrap p,
.page-wrap a,
.page-wrap h3 {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Utility to hide app shells by default */
.hidden {
    display: none;
}

.header {
    display: flex;

}

.header> :last-child {
    margin-left: auto;
    height: 16px;
    width: 16px;
}

audio {
    width: 52px;
}

.terminal-output {
    width: 100%;
    min-height: 180px;
    max-height: 260px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.65);
    color: #7efc7e;
    padding: 8px;
    border-radius: 8px;
    font-family: monospace;
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.terminal-line {
    margin: 2px 0;
}

.terminal-input-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.terminal-prompt {
    color: #7efc7e;
    font-family: monospace;
    white-space: nowrap;
}

#terminalInput {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 4px 6px;
}

#terminalInput:focus {
    outline: none;
    border-color: rgba(126, 252, 126, 0.7);
}