﻿@media (max-width: 767px) { /* For small screens */
    .audio-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .audio-title {
        text-align: center;
        flex-grow: 1; /* Ensures title stays centered */
    }

    .audio-controls {
        display: flex;
        align-items: center;
        gap: 10px; /* Ensures spacing between button & duration */
    }
}

#load-more-btn {
/*    display: block;*/
    margin: 10px auto 0;
    background: linear-gradient(45deg, #ff4d4d, #ff9999);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom:5px;
}

    #load-more-btn:hover {
        background: linear-gradient(45deg, #cc0000, #ff4d4d);
    }


.send-comment {
    display: inline;
}

.comment-section {
    padding-bottom: 20px;
}
    .view-song-hero-section {
        padding-top: 175px;
    }
@media (max-width: 992px) {
    .view-song-hero-section {
        padding-top: 435px !important;
    }
    .view-song-hero-section-admin {
        padding-top: 485px !important;
    }

}


