/* --- GLOBAL TYPOGRAPHY & RESET --- */
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    /* Updated font stack for a cleaner, modern look */
    font: 15px/1.6 "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-width: 320px;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

a:focus,
a:active,
.btn:focus,
.btn:active {
    box-shadow: none !important;
    outline: 0px !important;
}

.btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.container {
    max-width: 1140px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #92c66c;
}

.logo {
    height: 29px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* --- MENUS & DROPDOWNS --- */
.dropdown-menu {
    border: 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.genre-list {
    font-size: 14px;
}

.genre-list a {
    color: #fff;
    display: block;
    margin-bottom: 3px;
    opacity: 0.8;
}

.genre-list a:hover {
    opacity: 1;
    padding-left: 5px; /* Subtle movement */
}

/* --- PLAYER STYLES --- */
.m3-play, .m3-pause {
    border: 0;
    padding: 0;
    background-color: transparent;
}

.player {
    background-color: #fff;
    /* Added depth to the player bar */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.player .station-name h1 {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: -0.5px;
}

/* --- VIBRANT RADIO CARDS --- */
.radio-channels img {
    border: none;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    padding: 3px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    will-change: transform;
}

.radio-channels img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    filter: brightness(1.05) saturate(1.1);
    z-index: 5;
}

/* --- TITLES --- */
.filter-title {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.section-title {
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.letter {
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,.35);
}

/* --- FOOTER --- */
.footer-container {
    color: #fff;
    backdrop-filter: blur(6px);
}

.section-head {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .4px;
}

.footer-copyright {
    margin-top: 28px;
    opacity: .85;
}

.page-footer {
    font-size: 14px;
    padding-top: 45px;
}

.page-footer a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    transition: all .25s ease;
}

.page-footer a:hover {
    opacity: 1;
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(255,255,255,0.45);
}

.page-footer br {
    display: block;
    margin: 4px 0;
}

.page-footer i {
    font-size: 17px;
    margin-right: 11px;
    opacity: .85;
}

.page-footer li {
    line-height: 26px;
}

.footer-logo {
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.footer-text-logo {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* --- CONTROLS & ANIMATIONS --- */
.jp-play,
.jp-pause,
.report {
    border: 0;
    padding: 0;
    background-color: transparent;
}

/* VIBRANT PLAY BUTTON */
.jp-controls svg {
    width: 48px;
    height: 48px;
    padding: 16px;
    fill: #fff;
    /* Gradient for vibrancy */
    background: linear-gradient(135deg, #92c66c 0%, #7ab353 100%);
    border-radius: 50%;
    text-align: center;
    /* Glowing shadow */
    box-shadow: 0 5px 15px rgba(146, 198, 108, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.jp-controls svg:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(146, 198, 108, 0.6);
}

.pagination-next {
    display: none;
}

.pagination {
    margin-bottom: 15px !important;
}

.pagination .page-link {
    color: #000;
    font-size: 12px;
    border: 0 !important;
    border-radius: 4px;
    margin: 0 2px;
    transition: background-color 0.2s;
}

.page-item.active .page-link {
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- SEARCH --- */
.search-form {
    width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    border: 0;
    padding: 8px 15px;
    border-radius: 50px 0 0 50px; /* Pill shape */
    background: #f4f4f4;
}

.search-btn {
    background-color: #92c66c;
    border: 0;
    font-size: 13px;
    border-radius: 0 50px 50px 0;
    padding-right: 15px;
    transition: filter 0.2s;
}

.search-btn:hover {
    filter: brightness(1.05);
}

.search-btn svg {
    fill: #fff;
    width: 12px;
}

/* --- HEADER ICONS --- */
.menu-icon,
#menu-opener {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    width: 25px;
    height: 22px;
    fill: #ffffff90;
    margin-left: 5px;
}

.menu-icon:hover {
    fill: #fff;
    transform: scale(1.1);
}

.top-menu {
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
}

.top-menu button {
    border: 0;
    padding: 0;
    background-color: transparent;
}

/* --- AUTOCOMPLETE / SEARCH RESULTS --- */
.ui-widget.ui-widget-content {
    border: 0;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.ui-autocomplete img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    float: left;
    border-radius: 8px; /* Rounded image */
    border: 1px solid #f0f0f0;
}

.ui-menu .ui-menu-item:first-child {
    padding-top: 0;
}

.ui-menu .ui-menu-item:last-child {
    padding-bottom: 0;
    border-bottom: 0 !important;
}

.ui-menu .ui-menu-item {
    font-size: 14px;
    display: table;
    border-bottom: 1px dashed #eee;
    width: 100%;
    height: 70px;
    line-height: 20px;
    padding: 8px 5px;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.ui-menu .ui-menu-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #333;
}

.ui-menu .ui-menu-item-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.ui-widget-content .ui-state-active {
    background-color: #f7fbf3; /* Very light green hint */
    color: #000;
    border: 0;
}

/* --- THEME COLORS --- */
.site-bg-1 { background-color: #351837; }
.site-color-1 { background-color: #250a26; }
.site-copyright-1 { background-color: #1d071e; }
.site-pagination-1 .page-item.active .page-link { background-color: #250a26; }

.site-bg-2 { background-color: #06623E; }
.site-color-2 { background-color: #101820FF; }
.site-copyright-2 { background-color: #0d141c; }
.site-pagination-2 .page-item.active .page-link { background-color: #101820FF; }

.site-bg-3 { background-color: #231431; }
.site-color-3 { background-color: #301d42; }
.site-copyright-3 { background-color: #1c0e28; }
.site-pagination-3 .page-item.active .page-link { background-color: #301d42; }

.site-bg-4 { background-color: #CC313D; }
.site-color-4 { background-color: #B72530; }
.site-copyright-4 { background-color: #ae212c; }
.site-pagination-4 .page-item.active .page-link { background-color: #B72530; }

.site-bg-5 { background-color: #5e3b3c; }
.site-color-5 { background-color: #513233; }
.site-copyright-5 { background-color: #422627; }
.site-pagination-5 .page-item.active .page-link { background-color: #513233; }

.site-bg-6 { background-color: #92C66C; }
.site-color-6 { background-color: #201E20; }
.site-copyright-6 { background-color: #1c191c; }
.site-pagination-6 .page-item.active .page-link { background-color: #201E20; }

.site-bg-7 { background-color: #252539; }
.site-color-7 { background-color: #12121F; }
.site-copyright-7 { background-color: #0e0e1a; }

.site-bg-8 { background-color: #171717; }
.site-color-8 { background-color: #111; }
.site-copyright-8 { background-color: #0f0e0e; }
.site-pagination-8 .page-item.active .page-link { background-color: #111; }

.alert-no-record {
    color: #fff;
    background-color: #250a26;
    border-color: #250a26;
    font-size: 14px;
    border-radius: 8px;
}

/* --- NOTIFICATIONS --- */
@keyframes progress-shrink {
    0% { width: 100%; }
    100% { width: 0%; }
}

@keyframes notify-in {
    0% { left: -50px; opacity: 0; }
    100% { left: 0px; opacity: 1; }
}

@keyframes notify-in-out {
    0% { left: -50px; opacity: 0; }
    5% { left: 0px; opacity: 1; }
    95% { left: 0px; opacity: 1; }
    100% { left: -50px; opacity: 0; }
}

#notificationsContainer {
    position: fixed;
    max-width: 310px;
    z-index: 10;
    margin: 15px;
}

.bottomleft { left: 0; bottom: 0; }
.bottomright { right: 0; bottom: 0; }
.topright { right: 0; top: 0; }
.topleft { left: 0; top: 0; }

#notificationsContainer .notification {
    float: left;
    position: relative;
    margin: 5px;
    /* Clean white look with modern shadow */
    background-color: #fff;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #92c66c;
    overflow: hidden;
}

.n-animate-in {
    -webkit-animation-name: notify-in;
    animation-name: notify-in;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.n-animate {
    -webkit-animation-name: notify-in-out;
    animation-name: notify-in-out;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
}

.notification .pad {
    padding: 12px 15px;
    margin-bottom: 5px;
}

.notification .pad .message {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    display: inline-block;
    float: left;
    width: calc(100% - 20px);
}

.notification .pad .close {
    display: inline-block;
    float: right;
    width: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.notification .pad .close:hover {
    opacity: 1;
}

/* Use standard black close icon since bg is white */
.close-btn {
    height: 10px;
    width: 10px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 10px 10px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.65em auto no-repeat;
}

.notification .progressContainer {
    clear: both;
    float: left;
    width: 100%;
    text-align: left;
}

./* --- VIBRANT RADIO CARDS --- */
.radio-channels img {
    border: none;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    padding: 3px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    will-change: transform;
}

.radio-channels img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    filter: brightness(1.05) saturate(1.1);
    z-index: 5;
}

/* --- TITLES --- */
.filter-title {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.section-title {
    display: block;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.letter {
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,.35);
}

/* --- FOOTER --- */
.footer-container {
    color: #fff;
    backdrop-filter: blur(6px);
}

.section-head {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .4px;
}

.footer-copyright {
    margin-top: 28px;
    opacity: .85;
}

.page-footer {
    font-size: 14px;
    padding-top: 45px;
}

.page-footer a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    transition: all .25s ease;
}

.page-footer a:hover {
    opacity: 1;
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(255,255,255,0.45);
}

.page-footer br {
    display: block;
    margin: 4px 0;
}

.page-footer i {
    font-size: 17px;
    margin-right: 11px;
    opacity: .85;
}

.page-footer li {
    line-height: 26px;
}

.footer-logo {
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.footer-text-logo {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: .3px;
}
notification .progressContainer .progress {
    background-color: #f0f0f0;
    min-height: 4px;
    width: 100%;
    border-radius: 0;
    bottom: 0px;
}

.progress-animate {
    height: 4px;
    background-color: #92c66c !important; /* Vibrant Green */
    -webkit-animation-name: progress-shrink;
    animation-name: progress-shrink;
    animation-duration: 6s;
    animation-timing-function: linear;
}

.station-data {
    color: #111;
    font-size: 14px;
}

.station-data a {
    text-decoration: none;
    color: #111;
    border-bottom: 1px dotted #999;
}

.station-data a:hover {
    border-bottom: 1px solid #111;
}

.station-data .sep {
    margin: 0 5px;
    color: #ccc;
}

.description {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* --- VOLUME BAR VIBRANCY --- */
.jp-volume-bar {
    overflow: hidden;
    background-color: #e9ecef; /* Light gray */
    width: 100%;
    height: 8px; /* Thicker */
    margin: 4px 0;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.jp-volume-bar-value {
    background: linear-gradient(90deg, #92c66c, #b5e692);
    width: 0;
    height: 8px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(146, 198, 108, 0.5);
}

.jp-current-time {
    color: #111;
    font-size: 13px;
    font-weight: 600;
}

/* --- GENRE OVERLAY --- */
.genre-image {
    position: absolute;
    bottom: 0px;
    line-height: 35px;
    padding-left: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    width: 100%;
    color: #fff;
    font-weight: bold;
    border-radius: 0 0 12px 12px;
}

/* --- MODALS --- */
.modal-backdrop.show {
    z-index: 999999;
    opacity: 0.6;
    backdrop-filter: blur(2px); /* Blur effect behind modal */
}

.modal {
    z-index: 9999999;
}

.form-control, .form-select {
    font-size: 14px;
    color: #333;
    border-color: #eee;
    padding: 10px;
    border-radius: 6px;
}

.form-control:focus, .form-select:focus {
    border-color: #92c66c;
    box-shadow: 0 0 0 0.2rem rgba(146, 198, 108, 0.25);
}

/* --- ICONS & SVGS --- */
.twitter-icon { fill: #fff; width: 15px; margin-top: -1px; }
.facebook-icon { fill: #fff; width: 10px; margin-top: -2px; }
.telegram-icon { fill: #fff; width: 14px; margin-top: -2px; }
.mute-icon, .unmute-icon { fill: #444; width: 15px; height: 15px; transition: fill 0.2s; }
.mute-icon:hover, .unmute-icon:hover { fill: #92c66c; }

.report-icon { fill: #ffcb00; width: 20px; margin-top: -1px; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.whatsapp-icon { fill: #fff; width: 15px; margin-top: -2px; }
.random-icon { fill: #79b04f; width: 20px; transition: transform 0.3s; }
.random-icon:hover { transform: rotate(180deg); }

.share-icon { fill: #351837; width: 18px; margin-top: -3px; }
.heart-icon { fill: rgba(223, 24, 80, 0.35); width: 20px; transition: all 0.2s; }
.heart-icon:hover { fill: #df1850; transform: scale(1.1); }
.vote-icon { fill: #fff; width: 16px; }

.favorites {
    border: 0;
    padding: 0;
    background-color: transparent; /* Fixed from white to match containers */
}

.facebook-footer,
.telegram-footer { fill: #fff; height: 18px; }
.twitter-footer { fill: #fff; height: 20px; }

/* --- MODAL CONTENT --- */
#MyModal {
    z-index: 9999999 !important;
    font-size: 14px;
    font-weight: 400;
}

.modal-content {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.modal-header {
    border-bottom: 0 !important;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    border-top: 0;
}

.submit-button {
    color: #fff;
    background-color: #65b89e;
    border: 1px solid #65b89e;
    font-size: 13px;
    border-radius: 5px;
    padding: 8px 16px;
    box-shadow: 0 2px 5px rgba(101, 184, 158, 0.3);
}

.submit-button:hover {
    background-color: #5aa68e;
    transform: translateY(-1px);
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
}

.close {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #555;
    text-shadow: none;
    border: 0;
    background-color: transparent;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close:hover { opacity: 1; }

.dropdown-menu {
    min-width: 0;
    padding: .5rem;
}

.station-image {
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.up-button {
    background-color: #837a6f;
    color: #fff;
    border-radius: 3px;
}

#up {
    line-height: 22px;
}

.down-button {
    background-color: #444;
    color: #fff;
    border-radius: 3px;
}

#down {
    line-height: 22px;
    height: 10px;
    display: block;
}

.mute-box {
    width: 15px;
    height: 18px;
    display: inline-block;
    text-align: center;
    overflow: hidden;
}

/* --- ROUNDED & ANIMATED SOCIAL BUTTONS --- */
.facebook-box,
.twitter-box,
.whatsapp-box,
.telegram-box {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%; /* Circle */
    display: inline-block;
    border: 0;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effects for social buttons */
.facebook-box:hover,
.twitter-box:hover,
.whatsapp-box:hover,
.telegram-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.facebook-box { background-color: #4267b2; }
.twitter-box { background-color: #111; }
.whatsapp-box { background-color: #71c169; }
.telegram-box { background-color: #0088cc; }


/* --- COOKIE ALERT --- */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 99999999999;
    opacity: 0;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 15px;
    color: #ecf0f1;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookiealert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline;
    color: #fff;
}

.cookiealert .acceptcookies {
    margin: 0 0 0 10px;
    text-align: center;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #85c154;
    color: #fff;
    transition: background-color 0.2s;
}

.cookiealert .acceptcookies:hover {
    background-color: #76ad4a;
}

/* --- FAQ & FORMS --- */
.faqs .accordion-item {
    border: 0;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faqs .accordion-button {
    font-size: 15px;
    background-color: #fff;
}

.faqs .accordion-body p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.faqs button.accordion-button {
    box-shadow: inherit;
}

.faqs .accordion-button:not(.collapsed) {
    color: #111;
    font-weight: 700;
    background-color: #f9f9f9;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .05);
}

.faqs .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#comment-form, #contact-form, #submission-form {
    font-size: 15px;
}

.page-details p, .radio-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-details p:last-child, .radio-details p:last-child {
    margin-bottom: 0;
}

.comment-button {
    background-color: #81c14b;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.2s;
}

.comment-button:hover {
    background-color: #72aa42;
    transform: translateY(-1px);
}

/* --- REVIEWS --- */
.user-reviews .name {
    color: #ce2525;
    font-size: 15px;
    font-weight: 900;
}

.user-reviews .date {
    color: #777;
    font-size: 13px;
    font-style: italic;
}

.user-reviews .comment {
    color: #111;
    font-size: 15px;
    display: table;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    margin-top: 5px;
}

.bootstrap-select .filter-option {
    font-size: 15px;
}

.bootstrap-select .btn:hover {
    color: #111;
}

.bootstrap-select a {
    color: #111;
    padding: 8px 12px;
    font-size: 15px;
    border-bottom: 1px solid #f9f9f9;
    display: block;
    transition: background-color 0.2s;
}

.bootstrap-select a:hover {
    background-color: #f1f1f1;
}

/* --- SCROLLBAR --- */
/* Adds a custom scrollbar for Webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1d071e;
}
::-webkit-scrollbar-thumb {
    background: #92c66c;
    border-radius: 5px;
    border: 2px solid #1d071e;
}
::-webkit-scrollbar-thumb:hover {
    background: #b5e692;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .cookiealert {
        font-size: 14px;
    }

    .cookiealert .acceptcookies {
        font-size: 12px;
        margin: 0 0 0 5px;
    }

    .menu-icon,
    #menu-opener {
        width: 26px;
        height: 23px;
        margin-left: 8px;
    }

    .report-icon { width: 23px; }
    .random-icon { width: 22px; }
    .share-icon { width: 21px; }
    .heart-icon { width: 22px; }

    .station-data {
        color: #111;
        font-size: 15px;
    }

    .description {
        display: block;
        margin: 5px 0;
        font-size: 15px;
        line-height: 22px;
    }

    .jp-controls svg {
        width: 50px;
        height: 50px;
        padding: 16px;
        margin-bottom: 3px;
    }

    .jp-current-time {
        font-size: 14px;
    }
}