/* AutomatedPodcasts — Custom styles on top of Bootstrap 5 Darkly */

/* Smooth card transitions */
.card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Audio player styling */
audio {
    border-radius: 4px;
}
audio::-webkit-media-controls-panel {
    background: #303030;
}

/* List group items */
.list-group-item.bg-dark {
    border-color: #444;
}

/* Navbar brand icon */
.navbar-brand i {
    font-size: 1.2rem;
}

/* Status badges in tables */
.table td {
    vertical-align: middle;
}

/* Article alt-title inline editor */
.alt-title-input {
    background: transparent;
    border-color: #555;
}
.alt-title-input:focus {
    background: #2b2b2b;
}

/* Footer spacing */
footer {
    border-top: 1px solid #333;
    padding-top: 1rem;
}
