﻿/* Custom CSS */
.list-style-none {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.anchor {
    display: block;
    height: 50px; /* same height as header */
    margin-top: -50px; /* same height as header */
    visibility: hidden;
}

.audio-control-size {
    width: 100%; /* Make the audio player take up the full width of its parent container */
    max-width: 100%; /* Ensure it doesn't exceed its natural size if the parent is very wide */
    display: block; /* Ensures it behaves like a block-level element for proper width handling */
    margin: 0 auto; /* Center it if the parent is wider */
}

@media screen and (max-width: 768px) {
    .audio-control-size {
        height: 40px;
    }
}

.responsive-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.tags .tag {
    margin-bottom: 0.5rem; /* Space between tags */
}

.feedbutton, a.feedbutton:link, a.feedbutton:visited, a.feedbutton:active, a.feedbutton:hover {
    border: 1px solid;
    border-color: #FC9 #630 #330 #F96;
    padding: 0 3px;
    font: bold 10px sans-serif;
    color: #fff;
    background: #F60;
    text-decoration: none;
}
