@charset "utf-8";
/* CSS Document */
* {margin: 0;padding: 0;}
body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.6;
	background-color: #fff;color: #000;
}
ul {margin-left: 20px;}
ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
    margin: 20px 0; /* Add margin for spacing */
}

ul li {
    background-color: #f8f8f8; /* Light background color for each list item */
    padding: 10px 15px; /* Padding inside each list item */
    margin-bottom: 10px; /* Space between items */
    border-radius: 5px; /* Rounded corners */
    border-left: 5px solid #d32f2f; /* Decorative border on the left */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    font-size: 18px; /* Font size for better readability */
    color: #333; /* Text color */
}

ul li::before {
    content: "✔"; /* Add a check mark icon before each item */
    color: #d32f2f; /* Color of the check mark */
    font-weight: bold;
    margin-right: 10px; /* Space between icon and text */
}
.wrapper {
	max-width: 1130px;
	width: 94%;
	height: auto;
	margin: 0 auto;
	position: relative;
	padding: 30px 0;
}
h1 {font-size: 50px;margin-bottom: 30px;font-weight: 700;}
h2 {font-size: 34px;margin-bottom: 20px;font-weight: 700;}
h3 {font-size: 30px;margin-bottom: 10px;font-weight: 700;}
h4 {font-size: 20px;margin-bottom: 10px;font-weight: 700;}

header {text-align: center;}
nav {
	background: #f4f4f4;
	text-align: center;
}
nav ul {
	list-style: none;
	padding: 0;
}
nav ul li {
	display: inline;
	margin: 0 15px;
}
nav ul li a {
	text-decoration: none;
	color: #333;
}
section {
	margin-top: 60px;
}

.flex {
    display: flex;
    column-gap: 60px;
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    border-radius: 10px;
    padding: 30px;
	align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.right img {border-radius: 10px;}
.left, .right {width: 50%;}

#kandidaten {margin-top: 40px;}
.kandidaat {
    text-align: center; 
    transition: transform 0.3s, box-shadow 0.3s; 
}

/*.kandidaat:hover {
    transform: translateY(-10px); 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); 
}*/

.kandidaat img {
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.kandidaat h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.kandidaat p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.grid-3 {display: grid;grid-gap: 30px;grid-template-columns: repeat(3,1fr);}
.candidates-list, .kandidaten, section {
    margin-bottom: 40px;
}
.candidates-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between each candidate */
    margin: 20px 0;
}

.candidate-item {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    padding: 10px;
}

.candidate-number {
    width: 50px;
    text-align: left;
}

.candidate-name {
    flex: 1;
    text-align: left;
}

.candidate-status {
    width: 50px;
    text-align: center;
}

.red-circle {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
}

footer {
	background: #f4f4f4;
	text-align: center;
	padding: 10px;
}

@media (max-width: 1130px) {
    .flex {
        flex-direction: column;grid-row-gap: 40px;padding: 25px;
    }
    .left, .right {
        width: 100%;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
	body {font-size: 16px;}
    .flex {padding: 20px;}
	h1 {font-size: 40px;margin-bottom: 20px;font-weight: 700;}
	h2 {font-size: 24px;margin-bottom: 10px;font-weight: 700;}
	h3 {font-size: 20px;margin-bottom: 10px;font-weight: 700;}
	h4 {font-size: 20px;margin-bottom: 10px;font-weight: 700;}
}

