body {
    background-color: #040506;
    font-family: Karla, sans-serif;
}

h2{
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
}

h3{
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
}

.audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 30%;
    padding: 20px;
}

.controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-solid {
    background-color: #CC8244;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-solid:hover {
    background-color: #C56249;
}

.button-transparent {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

svg {
    width: 20px;
    height: 20px;
    fill: white;
}

input[type="range"] {
    width: 140px;
    accent-color: #CC8244;
}

label {
    font-size: 14px;
}

.seekbar-container {
    overflow-x:auto;
    scroll-behavior: smooth;
    position: relative;
    white-space: nowrap;
    padding: 20px 0px;
    background: linear-gradient(159deg, #CC8244 0%, #C87047 50.15%, #C56249 86.04%);
    user-select: none;
    min-height:120px;
    box-sizing: content-box;
}

.w-100{
    width: 100%;
    height:150px;
}

.w-70{
    width: 70%;
}

.w-50{
    width: 50%;
}

.w-30{
    width: 30%;
}

.currently-playing-container{
}

.past-shows-container{

}

.past-show{
    font-size: 16px !important;
    padding: 5px 10px !important;
    background: #232B2F !important;
    border: #2B363B !important;
    color: #FFFFFF !important;
}
.past-show:hover{
    background: #2B363B !important;
}

.seekbar-track {
    position: relative;
    height: 45px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    background:
        repeating-linear-gradient(
            to right,
            #ffffff 0,
            #ffffff 3px,
            transparent 3px,
            transparent 1800px
        ),
        repeating-linear-gradient(
            to right,
            #ffffff 0,
            #ffffff 2px,
            transparent 2px,
            transparent 150px
        ),
        repeating-linear-gradient(
            to right,
            #c8c8c8 0,
            #c8c8c8 1px,
            transparent 1px,
            transparent 30px
        );
    background-repeat: repeat-x;
    background-size:
            1800px 40px,  /* hours */
            150px 30px,  /* 5 minutes */
            30px 15px;  /* minutes */
}

/* Hour ticks */
.tick.hour {
    position: absolute;
    top: 0;
    width: 3px;
    height: 40px;
    background: white;
}

/* 5-minute ticks */
.tick.five-minutes {
    position: absolute;
    top: 0;
    width: 2px;
    height: 30px;
    background: #c8c8c8;
}

/* 1-minute ticks */
.tick.minute {
    position: absolute;
    top: 0;
    width: 1px;
    height: 15px;
    background: #c8c8c8;
}

/* Hour labels */
.label {
    position: absolute;
    bottom: 45px;
    font-size: 12px;
    color: white;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* The moving needle */
.needle {
    position: absolute;
    top: 0;
    width: 3px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 2px;
    pointer-events: auto;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    z-index: 10;
    cursor: ew-resize;
    transition: none; /* we'll handle transitions manually */
    user-select: none;
}

.hover-needle {
    opacity: 50%;
    background: #FFFFFF;
    height: 80px;
    pointer-events: none;
    z-index: 10;
    display: none; /* hidden by default */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.p-absolute{
    position: absolute;
}

.p-top{
    top: 0;
}

.container{
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.song {
    opacity: 80%;
    top: 85px; /* slightly below the needle height */
    height: 30px;
    background: #FFFFFF;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
    box-sizing: content-box;
    z-index: 10;
}
.show-colour{
    background: #B9314F !important;
    color: #FFFFFF !important;
}
.song:hover {
    opacity: 100%;
    min-width: fit-content;
    z-index: 100;
}

.tabs {
    background-color: #161B1D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    gap: 30px;
}
.tab {
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f0f0f0;
    justify-content: center;
    max-width:800px;
    margin-right: 5px;
    border-radius: 6px 6px 0 0;
}
.tab.active {
    background: #fff;
    font-weight: bold;
    border-bottom: 2px solid white;
}
.artist-image{
    background: #fff;
    border-radius: 4px;
    padding: 8px;
}

.tab-content {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 0 6px 6px 6px;
    background: #fff;
}

@media (min-width: 600px) {
    .tabs {
        flex-direction: row;
    }
    .col-2-s {
        width:100%;
    }
    .left-tab{
        text-align: center;
    }
    .right-tab{
        text-align: center;
    }
}

@media (min-width: 1000px) {
    .col-2-s {
        width: 33%;
    }
    .left-tab{
        text-align: right;
    }
    .right-tab{
        text-align: left;
    }
}

.live-indicator {
    display: flex;
    align-items: center;
    font-family: Karla, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #CC8244;
}

.dot {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #CC8244;
    animation: blink 1s infinite;
}

/* When paused */
.live-indicator.paused {
    color: gray; /* text color when paused */
}

.live-indicator.paused .dot {
    background-color: gray; /* dot color when paused */
    animation: none; /* stop blinking */
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
