.vocabulario-word-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    max-width: 500px;
    margin: auto;
}

.vocabulario-word-list .vocabulario-word-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.vocabulario-word-list .vocabulario-word-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.vocabulario-word-list .vocabulario-word-main {
    display: flex;
    flex-direction: column;
}

.vocabulario-word-list .vocabulario-word {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.vocabulario-word-list .vocabulario-translation {
    font-size: 1.1rem;
    color: #666;
    margin-top: 4px;
}

.vocabulario-word-list .vocabulario-audio-btn {
    font-size: 1.4rem;
    border: none;
    background: #4CAF50;
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.vocabulario-word-list .vocabulario-audio-btn:hover {
    background: #45A049;
}
.vocabulario-retry-btn {
    display: block;
    margin: 20px auto;
    padding: 15px 25px;
    border: none;
    background: #4CAF50;
    color: white;
    font-size: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.vocabulario-retry-btn:hover {
    background: #45A049;
}

