

/************************************************************************
 * GLOBAL STYLES:
 * .body:
 *   background-color: Global background color
 *   color: Global text color
 *   font-*: Global font size and family
 ************************************************************************/
body {
    margin: 0;
    overflow-x: hidden;
}

/* FIXED BAKGRUNN */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bakgrunn.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

    /* animasjon for glødende farger */
    animation: glowBackground 6s ease-in-out infinite;
}

/* PULSERENDE, GLØDENDE EFFEKT */
@keyframes glowBackground {
    0% {
        filter: brightness(1) saturate(1) hue-rotate(0deg) drop-shadow(0 0 0px rgba(255,255,255,0));
    }
    25% {
        filter: brightness(1.1) saturate(1.2) hue-rotate(15deg) drop-shadow(0 0 10px rgba(255,200,200,0.5));
    }
    50% {
        filter: brightness(1.15) saturate(1.3) hue-rotate(30deg) drop-shadow(0 0 20px rgba(255,255,255,0.6));
    }
    75% {
        filter: brightness(1.1) saturate(1.2) hue-rotate(15deg) drop-shadow(0 0 10px rgba(200,200,255,0.5));
    }
    100% {
        filter: brightness(1) saturate(1) hue-rotate(0deg) drop-shadow(0 0 0px rgba(255,255,255,0));
    }
}



a { text-decoration: none; color: red; }
a:hover { text-decoration: none; color: red; }

/*************************************************************************
 * PAGE STYLES:
 * #page:
 *   background-color: Background color of the page DIV
 *   border-*: Border on either side of the page, used with .body background-image
 *   margin-top: Blank space at the top of the page
 *   margin-left, margin-right: Aligns the page DIV in the center
 *   padding: Pads the page with the given size
 *   width: Size of the page DIV
 *
 *************************************************************************/
#page {
	background-color: transparent;

	min-height: 500px;
	border-left: 0px solid Black;
	border-right: 0px solid Black;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	width: 1100px;
}

/************************************************************************
 * LOGO STYLES:
 * #logo
 *   width: Size of the LOGO DIV
 *   height: Height of the LOGO DIV, usually same as LOGO image height
 *   margin-bottom: Space to the elements below the logo
 *   border-bottom: Horizontal Line below Logo
 *   color: Normal text inside the Logo DIV
 *   font-size: The size of the Station Name Text
 * #logo img
 *    Align all images in the LOGO DIV vertically in the middle
 *    No borders for any images inside the LOGO DIV
 *
 ************************************************************************/
#logo {
	width: 100%;
	height: 89px;
	margin-top: 0px;
	margin-left: auto;
	margin-bottom: 30px;
	margin-right: auto;

	padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 10px;
	padding-right: 0px;

	border-bottom: 8px solid Black;
	color: Black;
	font-family:Arial,Sans-serif;
	font-size:60px;
	font-weight:bold;
	text-decoration:none;
}

#logo img {
	vertical-align: middle;
	border: 2px;
}

/************************************************************************
 * NAVIGATION STYLES:
 * #navigation:
 *   Positions the navigation menu
 *
 * #navigation dl:
 *   background: Navigation area background color
 *   width: Width of the Navigation Menu
 *
 * #navigation dl dt:
 *   border-bottom: White line below the Header Text in the menu
 *   color: Header Text Color
 *   font-size: Header Text Size
 *
 * #navigation dl dd:
 *   background-color: Background colors of items in the menu
 *   color: Menu text color
 *   font-size: Header Text Size
 *   border-bottom: White line below the Text in the menu
 *
 * #navigation dl dd a:
 * Styling on hover
 *
 *
 ************************************************************************/
#navigation {
	float: left;
	clear: left;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
	border-radius: 10px;
}

#navigation dl {
	background: Black;
	margin: 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	width: 150px;
	border-radius: 10px;
}

#navigation dl dt {
	border-bottom: 2px solid Black;
	color: Azure;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 10px;
	border-radius: 10px;
}

#navigation dl dd {
	vertical-align: middle;
	font-size: 12px;
	font-weight: bold;
	background-color: Azure;
	border-bottom: 4px solid Black;
	color: Azure;
	margin: 0px;
	border-radius: 10px;
}

#navigation dl dd a,
#navigation dl dd a:visited {
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 10px 10px;
	background-attachment: scroll;
	height: 25px;
	color: Black;
	display: block;
	text-decoration: none;
	width: 140px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
	border-radius: 10px;
}

#navigation dl dd a:hover {
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 20px 20px;
	background-attachment: scroll;

	color: Black;
}

#navigation dl dd img {
	vertical-align: middle;
	border: 0px;
	max-width:30px;
	max-height:30px;
}

/************************************************************************
 * DEDICATION STYLES:
 * #dedication:
 *   Positions the dedication menu
 *
 * #dedication dl:
 *   background: Currently Playing Small area background color
 *   width: Width of the Currently Playing Small Menu
 *
 * #dedication dl dt:
 *   border-bottom: White line below the Header Text in the menu
 *   color: Header Text Color
 *   font-size: Header Text Size
 *
 * #dedication dl dd:
 *   background-color: Background colors of items in the menu
 *   color: Menu text color
 *   font-size: Header Text Size
 *   border-bottom: White line below the Text in the menu
 *
 * #dedication dl dd a:
 * Styling on hover
 *
 *
 ************************************************************************/
#dedication {
	float: left;
	clear: left;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
}

#dedication dl {
	background: Black;
	margin: 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 10px;
	width: 250px;
}

#dedication dl dt {
	border-bottom: 1px solid Red;
	color: black;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 10px;
}

#dedication dl dd {
	font-size: 12px;
	background-color: Azure;
	border-bottom: 1px solid Black;
	color: black;
	margin: 0px;
	padding: 5px;
}

#dedication dl dd a,
#dedication dl dd a:visited {
	background-color: Black;
	background-repeat: no-repeat;
	background-position: 10px 10px;
	background-attachment: scroll;

	color: black;
	display: block;
	text-decoration: none;
	width: 140px;

	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	padding-right: 0px;
}

#dedication dl dd a:hover {
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 11px 10px;
	background-attachment: scroll;

	color: #99CCFF;
}

#dedication dl dd img {
	vertical-align: middle;
	border: 2px solid Black;

}

/************************************************************************
 * TOP REQUESTS STYLES:
 *
 *
 ************************************************************************/
#top_requests {
	border-radius: 15px;
	float: left;
	clear: left;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: auto;
}

#top_requests dl {
	border-radius: 15px;
	background: Black;
	margin: 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	width: 150px;
}

#top_requests dl dt {
	border-radius: 15px;
	border-bottom: 0px solid Black;
	color: white;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	margin-bottom: 10px;
	padding: 10px;
}

#top_requests dl dd {
	font-size: 10px;
	background-color: Azure;
	background-repeat: repeat;
	background-position: 0px 0px;
	background-attachment: scroll;
	border-radius: 10px;
	border-bottom: 2px solid Black;
	color: Maroon;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}

#top_requests dl dd a,
#top_requests dl dd a:visited {
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 5px 5px;
	background-attachment: scroll;
	border-radius: 10px;	
	color: Black;
	display: block;
	text-decoration: none;
	width: 140px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
}

#top_requests dl dd a:hover {
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 3px 3px;
	background-attachment: scroll;
	color: Black;
	border-radius: 10px;
}

#top_requests dl dd img {
	vertical-align: middle;
	border: 2px solid Black;
}

/************************************************************************
 * PARTNER LINKS STYLES:
 *
 *
 *
 ************************************************************************/
 #partner-links {
	text-align: Center;
	background-color: transparent;
	width: 140px;
	float: left;
	clear: left;
	margin-top: 2px;
	margin-bottom: 5px;
	margin-left: auto;
	color: Black;
	border-radius: 5px;

}

/************************************************************************
 * CURRENTLY PLAYING STYLES:
 *
 *
 *
 ************************************************************************/

th.links {
	width: 90px;
}

#listener_count
{
	float:right;
	font-size: 18px;
    font-weight: bold;
	margin: 10px;
	color: Azure;
}

#currently-playing-artist
{
	font-size: 16px;
}

#currently-playing-title
{
	font-size: 16px;
}

#currently-playing-duration
{
	font-size: 14px;
}

#currently_playing_wrapper {
	margin-top: 0px;
	margin-left: 180px;
	margin-bottom:20px;
	margin-right: auto;
	clear: none;
}

#currently_playing {
	background: Black;
	padding-top: 10px;
	padding-bottom: 30px;
}

#currently_playing table {
	width: 100%;
	background: Black;
	border-spacing: 0px;
}

#currently_playing th {
	padding-bottom: 10px;
}

#currently_playing thead tr {
	font-size: 14px;
	font-weight: bold;
	background: Black;
	color: white;
}

#currently_playing tbody tr {
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	overflow: hidden;
	height: 120px;
	background-color: Azure;
	border-spacing: 14px;
	border-collapse: collapse;
}

#currently_playing td,
#currently_playing th {
	padding-left: 10px;
	padding-right: 10px;
}

#currently_playing img {
	border: 6px solid DarkRed;
	text-align: center;
}

#cpPictureMainSong {
	display: none;
}

/************************************************************************
 * COMING UP STYLES:
 * #coming-up:
 *   Positions the coming-up menu
 *
 * #coming-up dl:
 *   background: COMING UP area background color
 *   width: Width of the COMING UP Menu
 *
 * #coming-up dl dt:
 *   border-bottom: White line below the Header Text in the menu
 *   color: Header Text Color
 *   font-size: Header Text Size
 *
 * #coming-up dl dd:
 *   background-color: Background colors of items in the menu
 *   color: Menu text color
 *   font-size: Header Text Size
 *   border-bottom: White line below the Text in the menu
 *
 * #coming-up dl dd a:
 * Styling on hover
 *
 *
 ************************************************************************/
#coming-up_wrapper {
	margin-top: 0px;
	margin-left: 180px;
	margin-bottom: 20px;
	margin-right: auto;
	clear: none;
}

#coming-up {
	background: Black;
	padding-top: 10px;
	padding-bottom: 20px;
}

#coming-up table {
	background: transparent;
	border-spacing: 0px;
	width: 100%;
}

#coming-up table th {
	padding-bottom: 10px;
}

#coming-up table thead tr {
	color: white;
	font-size: 14px;
	font-weight: bold;
}

#coming-up table tbody tr {
	color: Maroon;
	font-size: 18px;
	background-color: Azure;
	text-align: center;
}

#coming-up table td,
#coming-up table th {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 20px;
}

#coming-up table tbody tr div {
	width: 275px;
	line-height: 2px;
	height: 220px;
	float: left;
	background-color: Azure;
	background-repeat: no-repeat;
	background-position: 10px 10px;
	background-attachment: scroll;

	color:Black;

	overflow: hidden;
	margin: 6px;
}

#coming-up table tbody tr span {
	font-size: 22px;
	line-height: 20px;
	padding-right: 5px;
}

#coming-up table tbody tr a,
#coming-up table tbody tr a:visited {
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	line-height: 12px;
	color: black;
}

#coming-up table tbody tr a:hover {
	background-repeat: no-repeat;
	background-position: 11px 10px;
	background-attachment: scroll;

	color: Black;
}

#coming-up table tbody tr img {
	vertical-align: middle;
	border: 4px solid DarkRed;
}

#coming-up table tbody tr span.comingIndex {
	float:left;
	margin: 3px;
}


/************************************************************************
 * RECENTLY PLAYED:
 *
 *
 *
 ************************************************************************/
#recently_played_wrapper {
	margin-top: 10px;
	margin-left: 180px;
	margin-bottom: 20px;
	margin-right: auto;
	clear: none;
}

#recently_played {
	background: Black;
	padding-top: 10px;
	padding-bottom: 20px;
}

#recently_played table {
	background: transparent;
	border-spacing: 0px;
	width: 100%;
}

#recently_played table th {
	padding-bottom: 10px;
}

#recently_played table thead tr {
	font-size: 14px;
	font-weight: bold;
	background: Black;
	color: white;
}

#recently_played table tbody tr {
	color: Black;
	font-weight: bold;
	font-size: 12px;
	overflow: hidden;
	height: 60px;
}

#recently_played table td,
#recently_played table th {
	padding-top: 3px;
	padding-left: 10px;
	padding-right: 10px;
}

.recently_played_odd {
	background-color: Azure;
	border-spacing: 10px;
	border-collapse: collapse;
}

.recently_played_even {
	background-color: Azure;
	border-spacing: 10px;
	border-collapse: collapse;
}

#recently_played table img {
	border: 2px solid DarkRed;
}

.rpPicture {
	display: none;
}

/************************************************************************
 * FOOTER STYLES:
 *
 *
 *
 ************************************************************************/
 #footer {
	width: 100%;
	margin-top: 50px;
	padding-top: 10px;
	font-weight: bold;
	font-size: 14px;
	border-top: 10px solid Black;
	clear: both;
	text-align: center;
	color: DarkRed;
}

.error {
	border: 1px solid Maroon;
	padding: 10px;
	background: #FFEEEE;
	margin: 10px;
}

.success {
	border: 1px solid Darkgreen;
	padding: 10px;
	background: #EEFFEE;
	margin: 10px;
}

/************************************************************************
 * PLAYLIST:
 *
 *
 *
 ************************************************************************/

th.links {
	width: 170px;
}

#playlist {
	margin-top: 0px;
	margin-left: 180px;
	margin-bottom: 20px;
	margin-right: auto;
	clear: none;
}

#playlist_wrapper {
	background: Black;
	padding-top: 10px;
	padding-bottom: 20px;
}

#playlist table {
	background: transparent;
	border-spacing: 0px;
	width: 100%;
}

#playlist table th {
	padding-bottom: 20px;
}

#playlist table thead tr {
	font-size: 14px;
	font-weight: bold;
	background: Black;
	color: white;
}

#playlist table tbody tr {
	color: #000000;
	font-weight: bold;
	font-size: 12px;
	overflow: hidden;
}

#playlist table td,
#playlist table th {
	padding-left: 10px;
	padding-right: 10px;
}

#td-playlist-paging
{
	padding: 5px;
	margin: 5px;
	height: 10px;
	text-align: center;
}

.playlist_odd {
	background-color: Azure;
	border-spacing: 0px;
	border-collapse: collapse;
}

.playlist_even {
	background-color: Azure;
	border-spacing: 0px;
	border-collapse: collapse;
}

#playlist table img {
	border: 2px solid rgb(255, 0, 0);
	margin: 2px;
}

/************************************************************************
 * SEARCH:
 *
 *
 *
 ************************************************************************/

#search {
	margin-top: 0px;
	margin-left: 180px;
	margin-bottom: 10px;
	margin-right: auto;
	clear: none;
	background: Black;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	color: white;
	font-size: 12px;
	font-weight: bold;
}


#search table {
	width: 100%;
}

#search .characterButton {
	padding: 0;
	background: none;
	border: none;
	color: Azure;
	font-weight: bold;
	text-decoration:underline;
}

#search .characterButton:hover {
	text-decoration: underline;
	color: DarkRed;
	cursor: pointer;
}

#search #activeCharacter {
	color:DarkRed;
}

/************************************************************************
 * Bildeposisjon:
 *
 *
 *
 ************************************************************************/

 #center {
	width: 170px;
	height: 150px;
	border: 0cap solid Maroon;
	background-color: transparent;
	object-fit: scale-down;
	object-position: center top;
	}
	#left {
	width: 35px;
	height: 35px;
	border: 0px solid Maroon;
	background-color: Black;
	object-fit: scale-down;
	object-position: left top;
	}
	#right {
	width: 35px;
	height: 35px;
	border: 0px solid MAroon;
	background-color: Black;
	object-fit: cover;
	object-position: right right;
	}

	h1 {
		border-bottom: 2px solid Black;
		background-color: Black;
		color: Azure;
		font-size: 14px;
		font-weight: bold;
		margin: 0px;
		padding: 10px;
		border-radius: 10px;
	  }

	  h2 {
		border-bottom: 2px solid Black;
		border-top: 2px solid Black;
		color: Black;
		font-size: 14px;
		font-weight: bold;
		margin: 0px;
		padding: 10px;
		border-radius: 10px;
	  }
.songbox {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cover {
    border-radius: 15%;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.35);
    flex-shrink: 0;
}

.songinfo {
    flex: 1;
}