@font-face { font-family: "OpenSans-Light"; src: url('../fonts/OpenSans-Light.ttf'); }
@font-face { font-family: "OpenSans-Regular"; src: url('../fonts/OpenSans-Regular.ttf'); }
@font-face { font-family: "Oswald-Regular"; src: url('../fonts/Oswald-Regular.ttf'); }

body.vote-page {
	background-color: #121212;
		color: #000000;
	   min-height: 100vh;
	background-image: url('/vote/assets/img/background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}




.box {
	margin-top: 100px;
	background-color: #1a1a1a;
	min-height: 200px;
	border-radius: 5px;
	padding: 20px;
	padding-bottom: 40px;
	color: #A9A9A9;
	animation: pulseGlow 2s infinite ease-in-out;
}

.box:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); }
  50%  { box-shadow: 0 0 30px rgba(255, 0, 0, 0.6); }
  100% { box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); }
}



.box2 {
	background-color:#211c18;
	border-radius: 5px;
	padding: 5px;
}

.header-text {
	height: 100px;
}
h1.header {
	font-family: "Oswald-Regular";
	font-size: 60px;
	text-transform: uppercase;
	color:#FFF;
}
h1.header .left {
	color: #FFF;
	background-color:#FFF;
	padding-left: 10px;
	padding-right:10px;
	border: solid 1px black;
}
h1.header .right {
	color: #FFF;
	background-color:black;
	padding-left: 10px;
	padding-right:10px;
	border: solid 1px black;
}
.vote-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.vote-img-container {
    width: 250px;
    text-align: center;
}

.vote-img {
    max-width: 220px;
    height: auto;
}

.vote-btn {
    flex-grow: 1;
    text-align: left;
    font-size: 18px; /* voeg dit toe */
}


form.vote {
	width:300px;
	margin:auto;
	margin-top: 25px;
}
input.error {
	border: solid 1px red;
}
.site {
    margin: 3px;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #2c2c2c; /* iets donkerder grijs */
    border: 1px solid #666; /* lichtere rand */
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4); /* rode gloed */
    transition: all 0.3s ease-in-out;
}

.site:hover {
    background-color: #3a3a3a;
    border-color: #aaa;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    cursor: pointer;
}

.footer {
	margin-top: 20px;
	color:#444;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    vertical-align: middle;
}
