/* Command Palette Trigger - Fixed Bottom Left */
.cmd-trigger {
    position: fixed;
    bottom: 135px;
    /* Goldilocks zone: 120px overlapped, 180px was too high */
    left: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cmd-trigger:hover {
    color: #4bffa5;
    /* Active Green */
    background: rgba(75, 255, 165, 0.1);
    border-color: #4bffa5;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(75, 255, 165, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 720px) {
    .cmd-trigger {
        bottom: 115px;
        /* Adjusted proportionally */
        left: 30px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
}