.test-workspace {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.instructions {
    text-align: left;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.instructions h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #333;
}

.instructions ol {
    margin: 0;
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}

.btn-start {
    font-size: 1.2rem;
    padding: 15px 40px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
    transition: all 0.2s;
    font-weight: bold;
}

.btn-start:hover {
    background: #d81b60;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
}

.test-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    /* Hide cursor usually */
}

.test-overlay.hidden {
    display: none;
}

.overlay-hint {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    pointer-events: none;
    transition: opacity 1s;
}

/* Specific colors handling done in JS */