/* Kevyempi tekstin muotoilu tietoa-sivulle */
.content {
	line-height: 1.7;
	color: #232b2b;
}
.content h2, .content h3, .content h4 {
	margin-top: 1.7em;
	margin-bottom: 0.7em;
	font-weight: 700;
	color: #217a3a;
	letter-spacing: 0.01em;
}
.content h4 {
	font-size: 1.1em;
	color: #2e9e4c;
}
.content ul {
	margin: 0 0 1.2em 1.2em;
	padding: 0;
	list-style-type: disc;
}
.content li {
	margin-bottom: 0.5em;
	padding-left: 0.1em;
}
.content p {
	margin-bottom: 1.2em;
	margin-top: 0.2em;
}
/* Floating sponsors area */
.sponsors-float {
    position: fixed;
    top: 230px;
    right: 32px;
    width: 240px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 12px;
    z-index: 1000;
    text-align: center;
}



/* Alternative: Move sponsor below content on smaller screens */

@media (max-width: 1200px) {
    .sponsors-float {
        position: static;
        width: 100%;
        max-width: 240px;
        margin: 20px auto;
        transform: none;
        right: auto;
        top: auto;
    }
    
    body::after {
        content: "";
        display: block;
        margin: 20px auto;
        width: 240px;
    }
}


.sponsor-title {
	font-size: 1em;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
}
.sponsor-logo {
	width: 216px;
	height: 120px;
	object-fit: contain;
	border-radius: 6px;
	background: transparent;
	margin: 0 auto 4px auto;
	display: block;
}
/* Add separation between radio groups */
form#registration-form .radio-section {
	margin-bottom: 18px;
	padding-bottom: 8px;
	border-bottom: 2px solid #eaffea;
}
form#registration-form .radio-section:last-of-type {
	border-bottom: none;
}
/* Modern form styles */
.content form#registration-form {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	padding: 18px 24px;
	max-width: 100%;
	width: 100%;
	margin: 18px 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-sizing: border-box;
}
form#registration-form label {
	font-weight: 600;
	margin-bottom: 2px;
	color: #217a3a;
}
form#registration-form input[type="text"]{
	padding: 3px 1px;
	border: 1px solid #b6e2c1;
	border-radius: 5px;
	font-size: 1em;
	background: #f6fff7;
	margin-bottom: 2px;
}
form#registration-form input[type="email"]{
	padding: 3px 1px;
	border: 1px solid #b6e2c1;
	border-radius: 5px;
	font-size: 1em;
	background: #f6fff7;
	margin-bottom: 2px;
}
form#registration-form input[type="tel"] {
	padding: 3px 1px;
	border: 1px solid #b6e2c1;
	border-radius: 5px;
	font-size: 1em;
	background: #f6fff7;
	margin-bottom: 2px;
}
form#registration-form textarea {
	padding: 6px 8px;
	border: 1px solid #b6e2c1;
	border-radius: 5px;
	font-size: 1em;
	background: #f6fff7;
	margin-bottom: 2px;
}
form#registration-form input[type="radio"] {
	accent-color: #217a3a;
	margin-right: 6px;
}
form#registration-form button[type="submit"] {
	background: #217a3a;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 8px 0;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s;
}
form#registration-form button[type="submit"]:hover {
	background: #145a27;
}
form#registration-form .radio-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 24px;
	margin-bottom: 6px;
	padding: 6px 0 2px 0;
	background: #f6fff7;
	border-radius: 6px;
	border: 1px solid #eaffea;
}
form#registration-form .radio-group label {
	font-weight: 400;
	color: #222;
	margin-bottom: 0;
}
body {
	font-family: Arial, sans-serif;
	margin: 0 auto;
	padding: 0;
	width: 750px;
}
header {
	background-color: rgba(33, 122, 58, 0.3);
	color: #eaffea;
	padding: 20px 20px;
	text-align: center;
}
/* Header banner */
.header-banner img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
}
nav {
	background-color: rgba(46, 158, 76, 0.6);
	color: #eaffea;
	padding: 10px 20px;
}
nav a {
	color: #eaffea;
	text-decoration: none;
	margin: 0 10px;
}
nav a:hover {
	text-decoration: underline;
	color: #b6e2c1;
}
.content {
	padding: 32px 24px;
	background-color: #f6fff7;
	max-width: 750px;
	margin: 32px auto;
	border-radius: 10px;
	box-sizing: border-box;
	line-height: 1.7;
	color: #232b2b;
}

/* Ilmoittautuneet list styles */
.attendee-list {
	padding-left: 0;
	counter-reset: attendee-counter;
}
.attendee-item {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	margin-bottom: 8px;
}
.attendee-number {
	background: #e6f6ea;
	color: #217a3a;
	font-weight: 700;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex: 0 0 34px;
}
.attendee-name {
	font-weight: 600;
	color: #1b3d24;
}
.attendee-muted {
	color: #777;
	font-weight: 400;
}
