
/***********************************************************************************/
/* General */

html, body {
	font-size: 20px;
	color: white;
	background: linear-gradient(45deg, #333333, #777777, #333333);
}

a {
	color: white;
	text-decoration: none;
}

.banner {
	margin-top:10px;
	height: 50px;
	font-size: 18px;
	color: #aaaaaa;
}

.bannerlinks {
	text-align:left;
	float:left;
}

.bannerinfo {
	text-align:right;
	float:right;
}

.banner a{
	display: flex;
	gap: 10px;
	justify-content: right;
	text-decoration: none;
	color: #aaaaaa;
}

.banner a:hover{
	color: white;
}

.search {
	margin-top: 10px;
}

input[type="search"] { 
	padding: 7px 5px; 
	line-height: 22px;
	background-color: #777777;
	color: white;
	border: none;
}

.searchbutton {
    background-color: #777777;
    border: none;
    color: white;
    padding: 8px 24px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

select {
	width: 100px;
	height: 30px;
	background-color: #777777;
	color: white;
	border: none;
}

/***********************************************************************************/
/* Movie Posters Table */

.movieTable{
	display: flex;
	flex-wrap: wrap;
	/*border: 3px solid white*/;
}

.movieCell {
	width: 20%;
	padding-bottom: 20px;
	/*border: 1px solid white;*/
}

.moviePoster {
	width: 170px;
	height: 255px;
	border:3px solid white;
}

.movieHeader {
	display: flex;
	gap: 1em;
	justify-content: center;	
}

.movieTitle {
	font-size: 18px;
	font-weight: bold;
}

.movieRating {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
}

/***********************************************************************************/
/* Filter Combos Table */

.filterTable{
	display: table;
	width: 30%;
	table-layout:fixed;
	/*border: 3px solid white*/;
}
.filterRow {
	display: table-row;
}

.filterCellH {	
	display: table-cell;
	padding-top: 5px;
}

.filterCell {	
	display: table-cell;
	padding-top: 5px;
}

/***********************************************************************************/
/* Pagination Links */

ul.ipagi li
{
	color: white;
	list-style-type: none;
	display:inline;
	background-color:#ff;
}

ul.ipagi li>a
{
	color: white;
	border: 1px solid #777777;
	padding: 4px 12px;
	text-decoration: none;
}

ul.ipagi li>a:hover,
ul.ipagi li>a:focus,
ul.ipagi li>a.active
{
	background-color: #777777;
}

ul.ipagi li>a.disabled
{
	background-color: transparent;
	cursor: default;
}

a.ipagifirst
{
	background-image: url("../img/icon-first.png");
	background-repeat: no-repeat;
	background-position: center; 
}
a.ipagiprev
{
	background-image: url("../img/icon-prev.png");
	background-repeat: no-repeat;
	background-position: center; 
}
a.ipaginext
{
	background-image: url("../img/icon-next.png");
	background-repeat: no-repeat;
	background-position: center; 
}
a.ipagilast
{
	background-image: url("../img/icon-last.png");
	background-repeat: no-repeat;
	background-position: center; 
}
