:root {
    --prymary-color: #f5f7f9;
    --secondary-color: #f0eeff;
    --accent-color: #7d14db;
    --accent-border-color: #681cad;
    --gray-color: #e2e2e2;
    --gray-medium-color: #dbdbdb;
    --gray-dark-color: #575757;
    --black-color: #000;
    --white-color: #f2f3f4;
    --background-color: #fafafa;
    --background-footer-color: #ececec;
    --background-sidebar-color: #f8f8f8;
    --btn-background-color: #efe6ff40;
    --font-size-12px: 12px;
    --font-size-14px: 14px;
}

/* --------- Body Options ---------- */

html,
body,
#content-container,
#content {
    max-width: 100vw; 
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
}

body.no-scroll {
    overflow: hidden;
}

body {
    overflow-x: hidden;
    font-size: 0.94rem;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #17062e;
    color: #fff;
    padding: 36px 14px;
    text-align: center;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.20);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.cookie-consent-banner .cookie-text {
    display: inline-block;
    font-size: 1rem;
    margin-right: 10px;
    max-width: 400px;
    text-align: left;
}

.cookie-consent-banner .cookie-accept-btn {
    background: #ff2a8f;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 7px 32px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.18s;
    font-weight: 600;
}
.cookie-consent-banner .cookie-accept-btn:hover {
    background: #da2479;
}

.cookie-consent-banner .cookie-decline-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 100px;
    padding: 7px 32px;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 8px;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner .cookie-decline-btn:hover {
    background: #da2479;
    color: #fff;
}

.cookie-consent-banner .cookie-link {
    color: #dbadff;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 0.97rem;
}
.cookie-consent-banner .cookie-link:hover {
    color: #da2479;
}

tbody, td, tfoot, th, thead, tr {
    border-color: #f2f2f2;
    border-style: solid;
    border-width: 1px;
    padding: 12px;
}

.btn:first-child:active {
    background-color: unset;
    border-color: unset;
}

#ajax-loader-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
#ajax-loader-overlay.visible {
    opacity: 1;
    pointer-events: all;
}
#ajax-loader-overlay .loader {
    width: 100px;
    height: 100px;
    border: 12px solid #f3f3f3;
    border-top: 12px solid #7d14db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    background: transparent;
    margin-right: -89px;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

.refresh-icon{
    display:inline-block;
    margin-left:6px;
    font-size:1rem;
    color:#7d13db;
}

.refresh-icon.rotating{
    animation:rs-spin .8s linear infinite !important; 
}

@keyframes rs-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

#refresh-last-tracks {
    border: 0;
    background: 0;
}

#station-suggest-list {
    cursor: pointer;
}
#station-suggest-list li {
    padding: 4px 10px;
}
#station-suggest-list li:hover {
    background: #e7f3ff;
}

#tracks-loader-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.82);
    z-index: 2222;
}
#tracks-loader-overlay .spinner-border {
    width: 3rem !important;
    height: 3rem !important;
}

#play-station {
    background-color: #f3e1ff;
}

.hidden {
    display: none;
}


#mobile-sidebar .mobile-sidebar-content {
    padding: 1rem;
}

#close-mobile-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
}

/* ——— Facebook button ——— */
.btn-facebook {
    background:#1877F2;
    border-color:#1877F2;
    color:#fff;
}
.btn-facebook:hover,
.btn-facebook:focus {
    background:#166fe5;
    border-color:#166fe5;
    color:#fff;
}
.btn-facebook i {
    vertical-align:middle;
    margin-right:.5rem;
    font-size:1.2em;
}

/* ——— Google button ——— */
.btn-google {
    background:#d93025;
    border-color:#d93025;
    color:#fff;
}
.btn-google:hover,
.btn-google:focus {
    background:#c5221f;
    border-color:#c5221f;
    color:#fff;
}
.btn-google i {
    vertical-align:middle;
    margin-right:.5rem;
    font-size:1.2em;
}

.edit-badge {
    position: relative;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #6d35b5;
    color: #ffffff;
    font-size: 16px;
    left: 8px;
    margin: 0 8px;
}
.edit-badge:hover{ 
    opacity: 0.7;
    color: #ffffff;
    text-decoration:none; 
}

.station-item{ position:relative; }

.select2-container--default .select2-selection--single {
    height: 43px !important;   
  }
  

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 43px !important;  
  }
  

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px !important;
  }
  

  .select2-container--default .select2-selection--multiple {
    min-height: 43px !important;
  }
  

  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    line-height:  forty-five px !important;
  }

#clear-history-button {
    background-color: unset;
    color: inherit;
    padding: 6px 40px;
}

.country-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 700;
}

.country-link-h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--black-color);
    font-weight: 700;
}

.sorting-links {
    text-align: right;
    margin-bottom: 1rem;
}

.sorting-link {
    text-decoration: none;
    border-bottom: 5px solid transparent;
    padding-bottom: 2px;
    font-weight: normal;
    color: inherit;
}

.sorting-link.active-sorting {
    border-bottom-color: #7d14db;

}

.filter-and-sorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px #e2e2e2 solid;
    padding-top: 6px;
}

.country-filter-links,
.sorting-links {
    margin: 0;
    padding: 0;
}

.filter-link,
.sorting-link {
    text-decoration: none;
    border-bottom: 6px solid transparent;
    padding-bottom: 2px;
    font-weight: normal;
    color: inherit;
}

.filter-link.active-sorting,
.sorting-link.active-sorting {
    border-bottom-color: #7d14db;
}


#player-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    background-color: #340c67;
    padding: 10px 10px;
    color: #fff;
    z-index: 3000;
    align-items: center;
    border-top: 4px #c512da solid;
}

.station-logo-container {
    flex-shrink: 0;
    margin-right: 8px;
}

#station-logo {
    width: auto;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}


#player-bottom .play-pause-icon,
#player-bottom .mute-unmute-icon {
    color: #fff;
}

#player-volume-str {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

#player-volume-str.show-streams #stream-buttons-bottom {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: #2f0e6d;
    padding: 10px;
    border-radius: 10px;
    z-index: 999;
}

.player-controls {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 6px;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    display: flex;
    font-size: 0.8rem;
    margin: 6px 0 8px 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    margin-right: 4px;
}

.breadcrumbs li::after {
    content: "›";
    margin-left: 4px;
}

.breadcrumbs li:last-child::after {
    content: "";
}

.description {
    color: #3c3c3c;
}

.network-stations-grid {
    margin-top: 15px;
}

.network-station-item {
    text-align: center;
}

.network-station-logo {
    width: 84px;
    height: auto;
    border-radius: 6px;
}

.network-station-name {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.country-station-count {
    font-size: 0.8rem;
    font-weight: 400;
}

.network-station-item a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-decoration: none;
    align-items: center;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.h1,
h1 {
    font-size: 1.6rem;
}

.h3, h3 {
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 2.0rem;
}

.active-link {
    color: var(--accent-color);
    font-weight: 800;
}

a.back-to-selection-link {
    font-weight: 800;
    color: #000;
    font-size: 16px;
    margin-top: 10px;
}


.feature-box {
    padding: 20px;
    border: 1px solid #f1e7ff;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-icon {
    font-size: 1.6rem;
    color: #60239c;
    margin-bottom: 0;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.block-hello-h {
    background-color: #f8feff;
    border-radius: 8px;
    border: 1px #cddde5 solid;
}

.rating-form {
    display: flex;
    justify-content: center;
}

.star-svg {
    width: 24px;
    height: 24px;
}

.star-svg path {
    fill: #ffce68;
    stroke: #edaf00;
    stroke-width: 1px;
}

.rating-form label {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.star-rating-radio {
    display: none;
}

.star-rating-label {
    cursor: pointer;
}

.star-svg {
    fill: orange;
}

.star-rating-label:hover,
.star-rating-label:hover~.star-rating-label {
    opacity: 0.7;
}

.average-rating {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.station-rating {
    display: flex;
    margin-left: auto;
    margin-right: 0;
}

.starability-growRotate input[type="radio"] { display: none !important; }
.starability-growRotate label svg path { fill: none !important; }
.starability-growRotate input[type="radio"]:checked ~ label svg path { fill: orange !important; }
.starability-growRotate input[type="radio"]:hover ~ label svg path,
.starability-growRotate input[type="radio"]:focus ~ label svg path { fill: #ffb300 !important; }

.form-control,
.form-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #8a8a8a !important;
    box-sizing: border-box;
    border-radius: 12px !important;
}


.btn {
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.1s, border-color 0.1s, color 0.1s;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-border-color);
    color: var(--white-color);
}

.btn-outline-secondary {
    background-color: unset;
    border-color: var(--black-color);
    color: var(--black-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-border-color);
    color: var(--white-color);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--black-color);
    color: var(--black-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--black-color);
    color: var(--white-color);
    border-color: var(--black-color);
}

.btn.active {
    color: var(--accent-color);
    background-color: #ffffff00;
    border-color: var(--accent-color);
}

.btn:hover {
    color: var(--black-color);
    background-color: unset;
    border-color: var(--black-color);
    opacity: 0.7;
}

.btn[disabled],
.btn.disabled {
    background-color: var(--accent-color);
    border-color: var(--accent-border-color);
    opacity: 0.65;
}


.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #9a01ff;
    background-color: #ffffff00;
    border-color: #9a00ff;
    border: 1px #9a00ff solid;
}

.account-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

#playlist-days .btn,
#playlist-days .btn-outline-primary {
    padding: 6px 2% !important;
}

.btn-update-meta {
    font-weight: 600;
    color: #7432c9;
    background-color: unset;
    border-color: #a158ff;
    text-decoration: none;
}


.verification-method {
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 12px;
}


.verification-method input[type="radio"] {
    margin-right: 10px;
}


.verification-method label {
    margin-bottom: 0;
}

.verification-method label {
    cursor: pointer;
}

.new-station-button {
    font-weight: 700;
    text-decoration: underline !important;
}


a.button {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
}


.alert {
    padding: 15px;
    margin-top: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}


#verification-options,
#station-url-field,
#root_directory_form,
#meta_tag_form {
    margin-bottom: 20px;
}

#root_directory_form a {
    margin-left: 12px;
    font-weight: 700;
    text-decoration: underline;
}


.verification-methods {
    list-style: none;
    padding: 0;
}

/* --------- Text ---------- */

.h2,
h2 {
    font-size: 1.3rem;
}

p {
    line-height: 1.6;
}

a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #d7d7d7;
}

a:hover {
    color: #000000;
    text-decoration: none;
    opacity: 0.6;
}

.icon-spacing {
    margin-right: 4px;
}



/* --------- Forms ---------- */

.form-control:focus {
    background-color: #fff;
    border-color: var(--gray-dark-color);
    outline: 0;
    box-shadow: unset;
}


/* --------- Modal ---------- */


.modal .modal-header {
    padding: 1rem 1rem;
}

.modal-content {
    border-radius: 18px;
}

.modal-backdrop.show {
    opacity: .6;
}

.modal-body {
    padding: 1rem 2rem;
}

.modal-title {
    line-height: 1.5;
    font-size: 1.6rem;
    display: table;
    margin: 0 auto;
}

.modal .btn-close {
    position: absolute;
    right: 0;
    margin: 15px;
}

.modal .form-control {
    margin: 18px 0;
    background-color: var(--white-color) !important;
}

.fade {
    transition: opacity .09s linear;
}

#authModal #showRegisterForm,
#authModal #showLoginForm {
    text-align: center;
    margin: 8px auto;
    display: table;
    text-decoration: underline;
}

#authModal .btn-primary {
    margin: 12px auto;
    display: block;
    width: 100%;
    height: 48px;
}

.dropdown-menu {
    top: 100%;
    left: 0;
    transform: none;
}


/* --------- Radio Player ---------- */

.radio-player h1 {
    font-size: 1.6rem;
    font-weight: 800;
}

.stations-list {
    display: flex;
    flex-direction: column;
}

.stations-list .station-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0d4e7;
    padding: 8px 15px 8px 0;
}

.stations-list .station-details {
    display: flex;
    align-items: center;
    gap: 15px;
}


.stations-list .station-item:hover {
    background-color: #f9f9ff;
}

.stations-list .station-item:hover .station-play-icon,
.stations-list .station-play-icon.active-play,
.stations-list .station-play-icon.loading {
    opacity: 1;
    pointer-events: auto;
}

.station-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.station-link:hover {
    opacity: 1;
}

.stations-list .station-play-icon {
    position: relative;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(216, 216, 216, 0.2);
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s ease, background-color 0.1s ease;
    cursor: pointer;
    opacity: 0;
    margin-left: auto;
}

.station-item:hover .station-play-icon {
    opacity: 1;
    pointer-events: auto;
}

.station-play-icon.active-play {
    opacity: 1 !important;
    pointer-events: auto;
}

.stations-list .station-play-icon.loading {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.stations-list .station-play-icon.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-top: 2px solid #8247b6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.station-play-icon:hover {
    background-color: rgb(216 216 216 / 100%);
}


.stations-list .station-logo {
    border-radius: 6px;
    background-color: rgb(255 255 255);
    margin-left: 8px;
    padding: 4px;
}

.station-logo {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}

.radio-player .station-logo {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    width: 140px;
    height: auto;
}


.radio-player-right {
    border-left: 1px solid #ccc;
}

.track-now {
    color: #c512da;
}

.station-item,
.station-link,
.category-label,
.station-play-icon {
    cursor: pointer;
}

.stations-list .station-logo img {
    border-radius: 6px;
    width: 110px;
    height: auto;
}

.stations-list .station-title {
    font-size: 0.96rem;
    font-weight: 700;
    font-family: 'Mulish', sans-serif;
}

a.station-title-link {
    text-decoration: none;
}

.stations-list .station-title:hover {
    color: #7d14db;
}

.stations-list .current-track {
    font-size: 12px;
    font-weight: 400;
    color: #909090;
}

.stations-list .station-info {
    margin-left: 10px;
}

.stations-list .station-categories {
    display: flex;
}

.stations-list .category-label,
.stations-list .station-country {
    font-size: var(--font-size-12px);
    color: var(--gray-dark-color);
    margin-right: 3px;
}

.stations-list .station-country {
    margin-top: 4px;
}


.countries-grid {
    display: flex;
    justify-content: space-between;
}

.country-column {
    width: 32%;
}

.country-column a {
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 6px;
}

.continent-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    border-bottom: 1px #e2e2e2 solid;
    padding: 12px 0;
    margin-bottom: 12px;
}

.continent-list li {
    margin: 0;
    padding: 6px 0;
}

.current-continent a {
    color: #cd3091;
}

.highlighted-country {
    color: #cd3091;
    border-bottom: 1px solid #cd3090 !important;
}

.popular-locations,
.popular-languages {
    padding: 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.radio-player {
    margin: 7px 0;
    border-bottom: 1px var(--gray-medium-color) solid;
    gap: 12px;
    background-color: white;
    padding: 8px 12px;
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: row;
}

#play-pause {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border: 0;
    color: #fff;
}

#play-pause:hover {
    transform: scale(1.1);
    color: #f0f0f0;
}

#play-pause i {
    color: inherit;
}

.station-location {
    font-size: 85%;
    color: var(--gray-dark-color);
}

.station-tags {
    padding: 0;
    list-style: none;
    text-indent: 0;
    font-size: 85%;
    color: var(--gray-dark-color);
    margin-bottom: 0.8rem;
}

.station-tags>li {
    margin: 0 0 0;
    padding: 0;
    display: inline-block;
}

.station-tags>li:not(:last-child)::after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: auto 0.24em auto 0.48em;
    height: 0.28em;
    width: 0.28em;
    background: var(--accent-color);
    border-radius: 50%;
}

.station-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 6px 0;
    font-size: 95%;
    color: var(--gray-dark-color);
}

.track-info img,
.track-item img {
    border-radius: 8px;
}

.track-info {
    display: flex;
    align-items: center;
    border-bottom: 1px var(--gray-medium-color) solid;
    padding-bottom: 14px;
}

.track-info-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    min-width: 0;
    margin-top: 2px;
}

.track-now-label {
    color: #9a11ff;
    font-weight: 500;
    margin-right: 8px;
    white-space: nowrap;
    font-size: 1rem;
}


#track-title {
    font-size: 90%;
}

.track-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.track-item {
    padding: 2px 0 8px 0;
    display: flex;
    gap: 8px;
    font-size: 0.9rem;
    align-items: center;
}

.track-details .track-time {
    color: var(--gray-dark-color);
    border: 1px var(--gray-medium-color) solid;
    display: table;
    border-radius: 4px;
    padding: 0 8px;
    font-size: 84%;
}

#player {
    align-items: center;
    display: flex;
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
}

#play-pause {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-border-color);
}

#play-pause:hover {
    opacity: 0.8;
}





#volume-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 10px;
    z-index: 10;
}

#mute-unmute {
    border: 0;
    background-color: transparent;
    color: var(--black-color);
    font-size: 20px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 126px;
    height: 26px;
    transform: rotate(-90deg);
    background: linear-gradient(to right, #241a56 var(--volume-percentage, 0%), #241a56 var(--volume-percentage, 0%));
    border-radius: 50px;
    position: absolute;
    bottom: 84px;
    left: -94%;
    transform-origin: bottom center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

#volume-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 4px;
    height: 400%;
    background-color: white;
    border-radius: 2px;
    z-index: -1;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-color, #ff4500);
    cursor: pointer;
    position: relative;
    z-index: 1;
    margin-top: -8px;
    margin-bottom: -8px;
}

#volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-color, #ff4500);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

#volume-control:hover #volume-slider {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.player-left {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.player-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

#track-cover {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    object-fit: cover;
}

.cover-wrapper {
    position: relative;
    display: inline-block;
}
.cover-eq {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
    width: 100%;
}
.cover-eq div {
    width: 30px;
    margin: 0 1px;
    background: linear-gradient(180deg, #ff8bfe 0%, #ba83ff 100%);
    border-radius: 3px 3px 0 0;
    animation: eq-move 0.5s infinite;
    opacity: 0.65;
}

.cover-eq div:nth-child(1) { animation-delay: 0.1s }
.cover-eq div:nth-child(2) { animation-delay: 0.3s }
.cover-eq div:nth-child(3) { animation-delay: 0.2s }
.cover-eq div:nth-child(4) { animation-delay: 0.4s }
@keyframes eq-move {
    0%   { height: 6px;  }
    20%  { height: 16px; }
    40%  { height: 10px; }
    60%  { height: 14px; }
    80%  { height: 8px;  }
    100% { height: 6px;  }
}

#player-bottom .track-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

#current-station-name,
#current-track-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.84rem;
}

#current-station-name {
    font-weight: 700;
}




#stream-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    margin: 6px 0 0 0;
    justify-content: space-between;
}

#player .stream-button {
    border-radius: 50px;
    background-color: white;
    border: 1px #b4b4b4 solid;
    font-size: 12px;
    padding: 2px 13px;
    font-weight: 500;
}

#player .stream-button:hover {
    border: 1px #cd3091 solid;
    color: #cd3091;
}

#player-bottom .stream-button {
    border-radius: 50px;
    border: 1px #8247b6 solid;
    font-size: 12px;
    padding: 2px 13px;
    font-weight: 500;
    background-color: unset;
    color: #bf77ff;
}

#player-bottom .stream-button:hover {
    border: 1px #cd3091 solid;
    color: #cd3091;
}

.btn-more-options {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px;
}

#stream-buttons-bottom {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
}

.active-stream-button {
    border: 1px solid #c513da !important;
    color: #c686ff !important;
}

#toggle-favorite {
    border-radius: 6px;
    height: 40px;
    width: 40px;
    padding: 0;
    font-size: 18px;
    border-color: #cfcfcf;
}

#toggle-favorite {
    border-radius: 6px;
    height: 40px;
    width: 40px;
    padding: 0;
    font-size: 18px;
    border-color: #cfcfcf;
}

#toggle-favorite:hover {
    background-color: #f1f1f1;
}


.navbar {
    min-height: 60px;
    background-color: var(--prymary-color) !important;
}

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    z-index: 2000 !important;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(0);
}



.sidebar-content-top {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sidebar-content-bottom {
    flex-shrink: 0;
}

#sidebar .sidebar-link {
    position: relative;
    padding: 4px 10% 4px 10%;
    font-size: 0.92rem;
    font-family: 'Mulish', sans-serif;
}

#sidebar .sidebar-link a {
    color: var(--black-color);
    font-weight: 800;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #ddd0;
    padding-bottom: 2px;
    text-decoration: none;
    gap: 4px;
}

.language-dropdown .dropdown-menu a {
    font-weight: 800;
    font-size: 0.92rem;
    padding: 4px 10px;
}

.language-dropdown .dropdown-item.active {
    background-color: #f1f1f1;
    color: #000000;
    border-bottom: 4px solid var(--accent-border-color);
    padding-bottom: 4px;
}

#sidebar .sidebar-link a.active {
    border-bottom: 4px solid var(--accent-border-color);
    padding-bottom: 4px;
}

.sidebar-content-bottom {
    padding: 16px 0 16px;
}

img.sidebar-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sidebar-brand {
    padding: 0;
}

.sidebar-menu li.dropdown {
    list-style: none;
    height: 138px;
    white-space: nowrap;
    overflow: unset;
    bottom: 0;
    position: absolute;
}

.sidebar-menu {
    margin: 15px auto;
    border-top: 1px #d5a6ff dotted;
    padding-top: 30px;
    max-width: 220px;
}

.lang-menu .dropdown-menu.show {
    top: -86px !important;
    background-color: #ffffff;
    filter: drop-shadow(rgba(28, 31, 58, 0.4) 8px 8px 8px);
}

.lang-menu .dropdown-menu .dropdown-item {
    font-weight: 500;
}

.sidebar-menu a {
    color: var(--white-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    letter-spacing: .08em;
}

#content {
    width: 100%;
    min-height: 94vh;
    padding-bottom: 80px;
    transition: all 0.3s;
    padding-left: 246px;
    box-sizing: border-box;
}


#close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#content {
    min-height: 100vh;
    padding-top: 15px;
}

.content-grow {
    flex-grow: 1;
}

.genres-list ul {
    padding: 0;
    list-style: none;
}

.footer {
    padding: 20px 0;
    font-size: 0.94rem;
    margin-top: 15px;
    border-top: 1px solid #d4bde2;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    display: inline;
    margin-right: 15px;
}


ul.footer-menu {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer .row {
    align-items: center;
}

.three-columns {
    column-count: 3;
}

.genres-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.genre-group {
    flex: 0 0 auto;
    min-width: 250px;
    margin-bottom: 18px;
}

.genre-group h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.genre-columns {
    display: flex;
}

.genre-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.genre-list li {
    display: inline-flex;
    position: relative;
    padding-right: 16px;
}

.genre-list ul {
    color: #280f70;
}

.genre-list a {
    text-decoration: none;
    font-size: 0.90rem;
    line-height: 1.9;
    font-weight: 400;
}


.genre-list li::after {
    content: '•';
    position: absolute;
    right: 4px;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #d2138a;
}

.genre-list li:last-child::after {
    display: none;
}

.d-none {
    display: none;
}

.toggle-genres {
    display: table;
    margin-top: 0.4rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px #a12effa8 solid;
    border-radius: 50px;
    padding: 4px 26px;
}

/* --------- Search Form ---------- */

.search-form {
    position: relative;
    width: 94%;
    margin: 15px auto 0 auto;
    display: flex;
}

.sidebar-content-top .search-form {
    position: relative;
    width: 94%;
    margin: 15px auto 15px auto;
    display: flex;
}


.search-input {
    width: calc(100% - 50px) !important;
    padding: 10px 20px;
    border: 1px solid var(--gray-dark-color);
    outline: none;
    box-shadow: none;
    font-size: 16px;
    color: #000000;
}

.search-input::placeholder {
    color: #aaa;
    font-style: italic;
}

.search-form-home {
    display: flex;
}

.search-form-home input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 6px solid #5f239c;
    box-sizing: border-box;
    margin-bottom: 0;
    border-radius: 12px 0 0 12px;
}

.sidebar-content-top input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    border: 2px solid #000000;
    box-sizing: border-box;
    border-radius: 12px 0 0 12px;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    border: 2px solid #000000;
    box-sizing: border-box;
    border-radius: 12px 0 0 12px;
}

.search-button {
    width: 48px;
    height: 48px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #000000;
    border: 1px solid #000000;
}

.search-form-home .search-button {
    width: 44px;
    height: auto;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
    background-color: #60239c;
    border: unset;
}

.search-button svg {
    vertical-align: middle;
    margin-left: -6px;
}

.search-button:hover {
    opacity: 0.9;
}

.search-button img {
    width: 100%;
    height: auto;
}

/* --------- Account Page ---------- */

.account-page {
    color: #333;
    margin: 0 auto;
}

.account-header {
    margin-bottom: 12px;
}

.account-action-button {
    border-radius: 100px;
    padding: 6px 35px;
}

.my-stations h2 {
    margin: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.5rem;
}

.separator-line {
    border: none;
    height: 2px;
    background-color: #b1b1e1;
    margin-top: 6px;
    margin-bottom: 12px;
}

.avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-avatar {
    float: left;
    margin-right: 12px;
    font-size: 2rem;
}

.comment-avatar .avatar-img {
    width: 40px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gray-color);
}

.username-and-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.username-display {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.username-label {
    font-weight: 800;
    margin-bottom: 5px;
}

.username {
    font-size: 18px;
    font-weight: 700;
}

.generate-avatar-btn {
    padding: 5px 20px;
    border: 1px solid var(--black-color);
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.generate-avatar-btn:hover {
    opacity: 0.5;
}

.profile-settings-container {
    margin-bottom: 20px;
}

.profile-settings-container h1 {
    text-align: center;
    color: #333;
}

.form-group,
.form-control {
    margin-bottom: 15px;
}

.profile-form .username {
    display: flex;
    gap: 4px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}


.form-control::placeholder {
    color: #A3A3A3;
    font-style: italic;
}


.profile-settings-container .separator-line {
    margin-top: 40px;
    margin-bottom: 40px;
}

.save-button {
    margin-right: 0;
    margin-left: auto;
}

.save-button:hover {
    opacity: 0.8;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination .step-links {
    display: flex;
    margin: 0;
    padding: 0;
}

.pagination .step-links a {
    display: inline-block;
    width: 42px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border: 1px solid var(--gray-dark-color);
    margin: 0 4px;
    border-radius: 8px;
    color: var(--black-color);
    text-decoration: none;
    transition: opacity 0.1s;
    margin-bottom: 8px;
}

.pagination .step-links a:hover {
    opacity: 0.5;
}

.pagination .current {
    display: inline-block;
    width: 36px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 50%;
    background-color: var(--black-color);
    color: var(--white-color) !important;
    transition: opacity 0.1s;
}

.pagination .current:hover {
    opacity: 0.7;
}


#load-more-stations {
    background: transparent !important;
    width: 100%;
    border: 1px solid var(--gray-dark-color);
    border-radius: 12px;
    padding: 16px 0;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.1s;
    font-size: 0.9rem;
    margin-top: 15px;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
}

#load-more-stations:hover {
    opacity: 0.7;
    border: 1px solid #7d13db;
}



.form-card {
    padding: 20px 20px 60px 20px;
}

.form-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.station-form .form-group {
    margin-bottom: 15px;
}

.station-form .form-group label {
    font-weight: bold;
    color: #555;
}

.station-form .form-group input,
.station-form .form-group textarea,
.station-form .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.station-form .form-group input[type="submit"] {
    background: #0056b3;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
}

.station-form .form-group input[type="submit"]:hover {
    background: #004494;
}

.comment {
    background-color: #ffffffb0;
    border-radius: 8px;
    border: 1px solid #ededed;
}

.comments-text {
    font-size: 14px;
}


.radio-desc {
    border-bottom: 1px var(--gray-medium-color) solid;
    background-color: #ffffff;
}

#player-bottom .play-pause-icon.loading {
    position: relative;
    color: transparent !important;
}
#player-bottom .play-pause-icon.loading::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 4px solid #fff3;
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spinPlayer 0.8s linear infinite;
    z-index: 2;
}
@keyframes spinPlayer {
    100% { transform: rotate(360deg); }
}


.scrolling-track-title {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-track-title .scrolling-inner {
    display: inline-flex;
    align-items: center;
    will-change: transform;
}

.scrolling-track-title .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    padding-right: 40px;
}

@keyframes marquee-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (min-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .container.home-container {
        max-width: 1400px !important;
    }

    .container.home-container-b {
        max-width: 1100px !important;
    }

}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    #toggle-sidebar {
        display: none;
    }
}

@media (max-width: 992px) {

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
    }

    .mobile-navbar-logo {
        height: 48px;
    }

    #sidebar {
        transform: translateX(-850px);
        width: 83%;
    }

    #sidebar.open {
        transform: translateX(0);
        box-shadow: rgba(0, 0, 0, 0.5) 0px -2px 5px;
    }

    #content {
        width: 100%;
        padding-left: unset;
        box-sizing: border-box;
    }

    #toggle-sidebar {
        color: #fff;
        background-color: unset;
        padding: 10px 30px;
        border-radius: 8px;
        border: 2px #791fc5 solid;
        font-weight: 900;
        color: #791fc5;
        font-size: 18px;
    }

    .stations-list .station-details {
        gap: 4px;
    }

    .stations-list .station-logo {
        margin-left: 2px;
        padding: 2px;
    }

    #station-logo {
        height: 42px;
    }

}

@media (max-width: 991.98px){
    #content{
        padding-left: 0;
    }

    .row{
        margin-right: 0 !important;
        margin-left: 0  !important;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 90%;
    }

    .hero-text h1 {
        font-size: 2.0rem;
        line-height: 1.0;
    }

    .home-page .lead {
        font-size: 1.0rem;
        font-weight: 300;
    }

    #mobile-sidebar #sidebar {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
    }

    #content {
        padding-left: 0;
        box-sizing: border-box;
    }

    #sidebar.active {
        left: 0;
        background-color: var(--background-sidebar-color);
    }

    #content.active {
        padding-left: 250px;
    }

    #close-sidebar {
        display: block;
    }

    .track-item {
        width: 100%;
    }

    .countries-grid {
        flex-direction: column;
    }

    .country-column {
        width: 100%;
    }

    .continent-list {
        column-count: 1;
    }

    .three-columns {
        column-count: 2;
    }

    .form-group.username {
        flex-direction: column;
        align-items: center;
    }

    .avatar-wrapper {
        margin-bottom: 20px;
    }

    .verification-method {
        flex-direction: column;
        align-items: flex-start;
    }

    .verification-method input[type="radio"] {
        margin: 0 0 10px 0;
    }

    .station-rating {
        margin-left: unset;
    }

    #player {
        gap: 18px;
    }

    .g-3,
    .gy-3 {
        --bs-gutter-y: 1rem;
    }

    .radio-player h1 {
        font-size: 1.4rem;
        text-align: center;
    }

    .radio-player-right {
        border-left: unset;
    }

    #player {
        align-items: center;
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
    }

    .radio-player {
        justify-content: center;
    }

    .station-tags {
        text-align: center;
    }

    .stations-list .station-categories {
        flex-wrap: wrap;
    }

    .pagination .step-links {
        display: flex;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
    }

    .h1,
    h1 {
        font-size: 1.25rem;
    }

    .h2,
    h2 {
        font-size: 1.1rem;
    }

    .breadcrumbs {
        list-style: none;
        padding: 0;
        display: flex;
        font-size: 0.8rem;
        margin: 0 0 8px 0;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .stations-list .station-item {
        padding: 8px 8px 8px 0;
    }

    .stations-list .station-play-icon {
        background-color: rgb(216 216 216 / 13%);
        opacity: 1;
        margin-left: auto;
    }

    .stations-list .station-logo img {
        border-radius: 4px;
        width: 84px;
    }

    .stations-list .station-title {
        font-size: 0.84rem;
    }

    .station-play-icon i.fas.fa-play {
        color: #000 !important;
    }

    #play-pause {
        width: 54px;
        height: 54px;
    }

    #player-volume-str #volume-control,
    #player-volume-str #stream-buttons-bottom {
        display: none;
    }
    
    #player-volume-str.show-streams #volume-control,
    #player-volume-str.show-streams #stream-buttons-bottom {
        display: flex !important;
    }
    
    #player-volume-str.show-streams #stream-buttons-bottom {
        flex-direction: column;
        position: absolute;
        bottom: 60px;
        right: 156%;
        background-color: #2f0e6d;
        padding: 10px;
        border-radius: 10px;
        z-index: 999;
    }
    
    #player-volume-str.show-streams #volume-control {
        flex-direction: column;
        align-items: center;
        background: #230853;
        padding: 8px 0 10px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 6px 18px 0 #0002;
    }

    #volume-slider {
        bottom: 155px;
        width: 192px;
        height: 36px;
        left: -178%;
    }

    .track-info-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .track-now-label {
        margin-right: 0;
        margin-bottom: 2px;
        display: block;
    }
    

}

@media (min-width: 769px) {
    #sidebar {
        margin-top: 0;
        background-color: #fcfbff;
    }

    #close-sidebar {
        display: none;
    }
}

@media (max-height: 1000px),
(max-width: 768px) {
    .language-dropdown .dropdown-menu.show {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        z-index: 100002 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 1rem !important;
        background-color: #fff !important;
    }

    .language-menu-close {
        position: fixed !important;
        top: 10px !important;
        right: 0 !important;
        font-size: 2.5rem !important;
        background: transparent;
        border: none;
        z-index: 100003 !important;
        display: block !important;
    }

    .language-dropdown .dropdown-menu {
        position: relative;
        z-index: 1050;
        background-color: #fff;
    }

    .language-dropdown .dropdown-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 1;
    }

    .language-dropdown .dropdown-menu>* {
        position: relative;
        z-index: 2;
    }

    .language-dropdown .dropdown-menu .fflag {
        position: relative;
        z-index: 0;
    }
}
textarea, pre, code {
    font-family: "Noto Sans", "Noto Sans Thai", Arial, Tahoma, sans-serif;
}

.widget-type-tile {
    border: 2px solid #f4f4f4;
    border-radius: 16px;
    padding: 16px 22px 8px 22px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, opacity 0.15s;
    box-shadow: none;
    outline: none;
    opacity: 1;
}
.widget-type-tile:hover,
.widget-type-tile:focus {
    opacity: 0.7;
}
.widget-type-tile.active {
    border: 2px solid #d561e3 !important;
    opacity: 1;
}

#widget-preview {
    width: 100%;
    height: auto;
    overflow: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 14px;
    border-radius: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    background: #c512da;
    border: none;
}
input[type="range"]::-moz-range-thumb {
    background: #c512da;
    border: none;
}
input[type="range"]::-ms-thumb {
    background: #c512da;
    border: none;
}
input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px #e5c3ee;
}
input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px #e5c3ee;
}
input[type="range"]:focus::-ms-thumb {
    box-shadow: 0 0 0 4px #e5c3ee;
}