.password-list { 
    margin-top: 20px; 
}

.password-item {
    cursor: pointer;
    padding: 8px 12px;
    margin: 5px 0;
    background: #f0f0f0;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.2s;
}

.password-item:hover { 
    background: #d0eaff; 
}

#copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}