/* DivineTunes.com — Stationary Download Box */

#download-box {
    position: fixed;
    top: 60px;          /* Adjust vertical placement */
    left: 40px;        /* Adjust horizontal placement */
    width: 300px;
    background: #222;
    border: 1px solid #444;
    padding: 20px;
    z-index: 9999;      /* Ensures it stays above the main UI */
}

#download-box h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.album-item {
    background: #1a1a1a;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #333;
}

.album-item h3 {
    margin: 0 0 10px 0;
    color: #eee;
    font-size: 16px;
}

.album-item button {
    background: #444;
    color: #fff;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.album-item button:hover {
    background: #555;
}
