body {
    background-color: black;
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

h1 {
    color: #00ff00;
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

#input {
    background-color: black;
    color: #00ff00;
    border: none;
    outline: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    width: 80%;
}

#output {
    margin-top: 15px;
    color: #00ff00;
}

#layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 100vh;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

#left-panel {
    background-color: black;
    border: 1px solid #00ff00;
    padding: 15px;
    overflow-y: auto;
}

#right-panel {
    display: grid;
    grid-template-rows: 180px 1fr;
    gap: 10px;
}

#clock-panel {
    background-color: black;
    border: 1px solid #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clock-ascii {
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    line-height: 1.1;
    margin: 0;
    white-space: pre;
    text-align: center;
}

#idk-panel {
    background-color: black;
    border: 1px solid #00ff00;
    color: #00ff00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.terminal {
    background-color: black;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 15px;
}

#clock-ascii {
    font-size: 9px;
    letter-spacing: 0.5px;
}

#left-panel, #clock-panel, #idk-panel {
    cursor: move;
    resize: both;
    overflow: auto;
    min-width: 120px;
    min-height: 100px;
}
#left-panel:active, #clock-panel:active, #idk-panel:active {
    opacity: 0.85;
    z-index: 10;
    border-color: #00ff00;
    box-shadow: 0 0 12px rgba(0,255,0,0.4);
}
#layout.dragging {
    opacity: 0.95;
}

#left-panel::after, #clock-panel::after, #idk-panel::after {
    content: "⋮⋮";
    position: absolute;
    bottom: 4px;
    right: 6px;
    color: #00ff00;
    font-size: 10px;
    opacity: 0.5;
    pointer-events: none;
}
#left-panel, #clock-panel, #idk-panel { position: relative; }

#layout {
    align-items: stretch;
}
#left-panel, #right-panel {
    transition: all 0.2s ease;
}

#layout { gap: 8px; }
#left-panel:hover, #clock-panel:hover, #idk-panel:hover {
    border-color: #00ff88;
}

#idk-panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
}
#idk-header {
    background-color: #111;
    color: #00ff00;
    padding: 6px 10px;
    font-size: 11px;
    border-bottom: 1px solid #00ff00;
}
#idk-content {
    color: #c5cddb;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 10px;
    margin: 0;
    white-space: pre-wrap;
    overflow-y: auto;
    flex: 1;
}

#idk-content::-webkit-scrollbar { width: 6px; }
#idk-content::-webkit-scrollbar-thumb { background: #00ff00; border-radius: 99px; }
#idk-header { letter-spacing: 0.5px; }
