﻿/* 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 */
}