#terminal-container {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #00ff00;
    width: 90dvw;
    height: 85dvh;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 99;
}

#terminal {
    white-space: pre-wrap;
    font-size: 16px;
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: none;
}

.terminal-link {
    margin-top: 2.5px;
    margin-bottom: 2.5px;
}

#terminal::-webkit-scrollbar {
    display: none;
}

#terminal-header {
    background: #00ab00 !important;
    color: #ffffff !important;
    padding: 3px 10px;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#terminal-header span {
    background: transparent !important;
    color: #ffffff !important;
}

.terminal-audio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    background: transparent !important;
}

.terminal-toggle-switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
    background: transparent !important;
}

.terminal-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.terminal-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: #333 !important;
    transition: 0.4s;
    border-radius: 12px;
    border: 1px solid #ffffff;
    overflow: hidden;
}

.terminal-toggle-slider:before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff !important;
    transition: 0.4s;
    border-radius: 50%;
}

.terminal-toggle-switch input:checked + .terminal-toggle-slider {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.terminal-toggle-switch input:checked + .terminal-toggle-slider:before {
    transform: translateX(12px) translateY(-50%);
}

.terminal-volume-slider {
    width: 60px;
    appearance: none;
    -webkit-appearance: none;
    height: 3px;
    background: #333 !important;
    border-radius: 2px;
    outline: none;
    border: 1px solid #ffffff;
}

.terminal-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    background: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.terminal-volume-slider::-moz-range-thumb {
    width: 8px;
    height: 8px;
    background: #ffffff !important;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ffffff;
}
