/* Keyliste */
.giveaway-container {
	background: rgba(0,0,0,0.75); 
	border: #000000 solid 2px;
	border-radius: 25px; 
	padding: 10px;	
}

.giveaway-container:hover {
	background: rgba(0,0,0,0.5); 
	border: #49C3E8 solid 2px;
	transition: 0.5s;
}

.giveaway-image {
	max-height: 95px;
	border-radius: 25px 0px 0px 25px;
	border: #49C3E8 2px solid;
}

.giveaway-icon {
	height: 25px;
	margin-right: 25px;
}

.giveaway-list a{
	margin: 5px;
}

/* Pagination */
.pagination-container {
  margin-top: 20px;
  text-align: center;
	
}

.pagination {
  display: inline-block;
}

.pagination li{
	float: left;
}

.pagination a {
  margin: 0px 2px;
  cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	color: #ffffff;
	padding: 10px 10px;
	font-weight: 500;
	overflow: hidden;
	border: 1px solid #333333;
	background-color: #333333;
}

.pagination a.active {
	background-color: #49C3E8;
	color: white;
}

.pagination a:hover:not(.active) {
	color: #333333;
	border: 1px solid #ffffff;
	-webkit-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-moz-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-ms-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	-o-box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
	box-shadow: rgba(255, 255, 255, 1) 0 0px 0px 40px inset;
}

.pagination a.disabled {  
  cursor: not-allowed;
}

/* Gamelist */
span.game-category {
    font-weight: bold;
    color: #CD7F32;
}

#filter-container {
  text-align: center;    
}

#filter {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
}

#filter li {
  display: inline;
  margin: 10px;
  font-size: 20px;
}

#filter li a {
  text-decoration: none;
  color: #49C3E8;
}

#filter li a:focus,
#filter li a:active{
  font-weight: bold;
  text-decoration: underline;
  color: #CD7F32;
} /* Aktive Kategorie */

#filter li a:hover { /* Stil für aktive Kategorie nach Klick */
  color: #CD7F32;
}