.voice-guidelines {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(93, 110, 73, 0.95), rgba(40, 51, 26, 0.95));
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 25px rgba(93, 110, 73, 0.4);
    width: 300px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 2px solid #5d6e49;
    transition: all 0.3s ease;
}

.voice-guidelines:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25),
                0 0 30px rgba(93, 110, 73, 0.5);
}

.voice-guidelines h3 {
    color: #E8F0E3;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 2px solid rgba(232, 240, 227, 0.5);
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.command-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-item {
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(232, 240, 227, 0.15);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(232, 240, 227, 0.3);
}

.command-item:hover {
    background: rgba(232, 240, 227, 0.25);
    transform: translateX(-5px);
    border-color: rgba(232, 240, 227, 0.5);
}

.command-text {
    color: #E8F0E3;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.command-description {
    color: rgba(232, 240, 227, 0.8);
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .voice-guidelines {
        position: fixed;
        right: 10px;
        width: 250px;
        padding: 15px;
    }
} 