body {
    overflow: hidden;
    /* Prevent full page scroll if possible, assuming containers scroll */
    background-color: #f8f9fa;
}

#mycanvas {
    border: 1px solid #ddd;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ace_editor {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
}

/* Custom Modal Styling (Modern Luxury) */
.custom-modal-content {
    background: rgba(40, 44, 75, 0.95);
    /* Deep dark blue */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    font-family: 'Prompt', sans-serif;
}

.custom-modal-btn {
    background: linear-gradient(45deg, #4361ee, #3a0ca3);
    border: none;
    border-radius: 10px;
    padding: 0.6rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
    background: linear-gradient(45deg, #4895ef, #4361ee);
}