.nominate-button {
	background-color: #0073aa;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}

.nominate-button:hover {
	background-color: #005177;
}

/* Modal styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}

.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 800px;
	position: relative;
}

.close {
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

/* Form styles */
.nominate-form {
	margin-top: 20px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group.half {
	width: 50%;
}

.form-group.full {
	width: 100%;
}

.form-group.center {
	text-align: center;
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}


.nominate-topic-content {
	width: 100%;
	margin: 20px 0;
	display: flex;
}

.nominate-topic-answer-item {
	width: 25%;
	padding: 15px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	gap: 15px;
	float: left;
}

.answer-title {
	width: 100%;
	margin: 0;
	font-size: 18px;
	color: #333;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.answer-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.answer-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.answer-image:hover img {
	transform: scale(1.05);
}

.answer-button {
	width: auto;
	padding: 10px 20px;
	background-color: #0073aa;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.answer-button:hover {
	background-color: #005177;
}

.answer-button:disabled {
	background-color: rgb(204, 51, 102);
}

.answer-button:disabled:hover {
	background-color: rgb(204, 51, 102);
	cursor: default;
}

.answer-message {
	text-align: center;
}

.results-apm .answer-percent span {
    color: #fff;
    font-weight: 700;
    margin-right: 3px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
	.nominate-topic-answer-item {
		width: 33.333%;
	}
}

@media screen and (max-width: 900px) {
	.nominate-topic-answer-item {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.nominate-topic-answer-item {
		width: 100%;
	}
}