/* ----------------------------------------
   WORKS LIST TAB STYLES
   ---------------------------------------- */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(73, 95, 156, 0.4);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(73, 95, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(73, 95, 156, 0);
    }
}

/* Filter tag styles */
.filter-tags {
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #495f9c;
}

.filter-tags .title {
    font-weight: 500;
    color: #495f9c;
}

.filter-tags .badge {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.filter-tags .badge:hover {
    transform: translateY(-2px);
}

.filter-section {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    border-left: 3px solid #495f9c;
}

/* Action buttons for card view - now in the author line */
.action-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.2s ease;
    margin-left: 5px;
    vertical-align: middle;
}

.action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.audio-btn {
    background-color: #ffc107;
    border-color: #ffc107;
}

.read-btn {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.work-card {
    position: relative;
}

.card-text {
    display: flex;
    align-items: center;
}
