/* Compact Audio Table Styles */
.skydiv-audio-table {
    margin: 15px 0;
}

/* Clean, stable play buttons */
.skydiv-compact-play-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: 2px solid #007cba;
    background: white;
    color: #007cba;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.skydiv-compact-play-btn:hover {
    background: #007cba;
    color: white;
}

.skydiv-compact-play-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Remove WordPress button conflicts */
.skydiv-compact-play-btn.button {
    border: 2px solid #007cba !important;
    background: white !important;
    color: #007cba !important;
    height: 32px !important;
    width: 32px !important;
    padding: 0 !important;
    line-height: 1 !important;
    min-height: auto !important;
}

.skydiv-compact-play-btn.button:hover {
    background: #007cba !important;
    color: white !important;
}

.skydiv-audio-row:hover {
    background-color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .skydiv-album-column {
        display: none;
    }
}