body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #0F0;
    font-family: monospace;
    height: 100vh;
    overflow: hidden;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
}

#input-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #FFF;
    text-align: center;
}

#input-container input, #input-container button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    background-color: #1B4D3E;
    color: #FFF;
    border: 1px solid #2C6E49;
    border-radius: 5px;
}

#input-container input {
    width: 300px;
}

#input-container button {
    background-color: #2C6E49;
}

#input-container input:focus, #input-container button:focus {
    outline: none;
}

/* 드래그 앤 드롭 시각적 피드백 */
#matrixCanvas.drag-over {
    border: 3px dashed #2C6E49; /* 매트릭스 테마 색상으로 점선 테두리 */
    box-sizing: border-box; /* 테두리가 요소 크기에 영향을 주지 않도록 설정 */
}
