.mp3-manager-container {
    margin: 20px 0;
    font-family: inherit;
}

.mp3-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mp3-title {
    margin: 0 0 10px 0;
    color: #333;
}

.mp3-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.mp3-player audio {
    width: 100%;
    margin-bottom: 15px;
}

.mp3-download-btn {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.mp3-download-btn:hover {
    background: #005177;
    color: #fff;
}

/* Grid View */
.mp3-manager-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.mp3-manager-grid-view .mp3-item {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
