﻿* { margin: 0; padding: 0; box-sizing: border-box; } 
header { background-color: #333; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 10px; } 
.menu-button { cursor: pointer; font-size: 24px; margin-right: 10px; }
.logo { text-align: center; flex-grow: 1; /* Takes up remaining space */ }

.vertical-ellipsis { display: inline-block; font-size: 24px; 
transform: rotate(90deg); 
transform-origin: center; 
}

/* Style the pagination container */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
}

/* Style each pagination item */
.page-item {
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Style the active pagination item */
.page-item.active {
    background-color: #2980b9;;
    color: #fff;
}

/* Hover effect on pagination items */
.page-item:hover {
    background-color: #2980b9;;
    color: #fff;
}


/* Common CSS styles player*/
.radio-player {
    background-color: #64646430;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 2px auto 20px;
    padding: 20px;
}

.radio-info img.station-logo {
    max-width: 100px;
    border-radius: 50%;
}

h1.station-name {
    font-size: 24px;
    margin-top: 10px;
    color: #ddd;
}

audio {
    width: 100%;
    margin-top: 20px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.action-buttons button {
    background-color: transparent;
    border: none;
    color: #ddd;
    font-size: 18px;
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.action-buttons button i {
    margin-right: 5px;
}

/* Dropdown styles */
.share-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.share-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content button {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px;
}

.dropdown-content button i {
    margin-right: 5px;
}

.dropdown-content button:hover {
    background-color: #f0f0f0;
}
/* Like and Dislike button styles */
.like-button:hover, .dislike-button:hover {
    background-color: #333;
    color: #fff;
}
/* Like and Dislike button styles */
.like-button:hover, .dislike-button:hover {
    background-color: #333;
    color: #fff;
}

/* Style slide nav */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #000000e3;;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
a.btn {
    border-bottom: 1px solid #f5f5f52e;
    background-color: #33333336;
}
img.navimg {
    margin: -3px 3px;
}
div#more-options-button {cursor: pointer;}

/* drop options bouton*/
div#dropdown {
    background-color: #ddd;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	top: 50%!important;
    position: absolute;
    right: 25%;
	display: none;
	z-index: 1;
}
#dropdown ul {
    list-style-type: none;
    padding: 0;
}
#dropdown li {
    padding: 10px;
}

#dropdown a {
    text-decoration: none;
    color: #333;
}

#dropdown a:hover {
    background-color: #ddd;
}
li.btn-opt {
    background-color: #eee;
    width: 200px;
    border-bottom: 1px solid rgba(0,0,0,.2);
}
#dropdown li:hover { background-color: #b51b1b99; }
div#menu-button:hover {
    transform: rotate(354deg);
}
