* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', sans-serif;
	background: #f9f9f9;
}

/* HEADER */
header {
	background: #fff;

	padding: 20px 0;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	z-index: 999;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-weight: bold;
	font-size: 1.2rem;
	color: #c62828;
}

.nav {
	display: flex;
	gap: 20px;
}

.nav a {
	color: #222;
	text-decoration: none;
	font-weight: 500;
}

.burger {
	display: none;
	font-size: 1.6rem;
	color: #c62828;
	cursor: pointer;
}

/* HERO */
.hero {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
		url('/assets/img/hero-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 150px 20px;
	text-align: center;
	animation: fadeIn 1.2s ease-out;
}

.hero h1 {
	font-size: 2.2rem;
	color: #fff0f0;
	max-width: 700px;
	margin: 0 auto 20px;
}

.hero p {
	max-width: 700px;
	margin: 0 auto 40px;
	color: #fff0f0;
	line-height: 1.6;
	font-size: 1.05rem;
}

.update-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f5f5f7;
	padding: 12px 20px;
	border-radius: 16px;
	font-family: 'Segoe UI', sans-serif;
	font-size: 14px;
	color: #616161;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

.update-box .updated-text strong {
	color: #333;
}

.update-box .rating-link {
	color: #757575;
	text-decoration: underline;
	font-weight: 400;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.update-box .rating-link:hover {
	color: #d81b60;
}

.rating-popup {
	display: none;
	position: absolute;
	top: 45px;
	right: 0;
	width: 320px;
	max-height: 260px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	overflow: hidden;
}

.popup-content {
	padding: 20px;
	overflow-y: auto;
	max-height: 260px;
	font-size: 14px;

	line-height: 1.5;
	scrollbar-width: thin;
}

.popup-content p {
	color: #000 !important;
}

.popup-content::-webkit-scrollbar {
	width: 6px;
}

.popup-content::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 10px;
}

/* Стилі кнопки */
.rating-link {
	color: #757575;
	text-decoration: underline;
	font-weight: 400;
	transition: color 0.3s ease;
}

.rating-link:hover {
	color: #d81b60;
}

@media (max-width: 768px) {
	.rating-popup {
		width: 90%;
		right: 5%;
	}
}

/* Responsive */
@media (max-width: 600px) {
	.update-box {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.update-box .rating-link {
		align-self: flex-end;
	}
}

/* MOBILE MENU */
.mobile-nav {
	display: none;
	flex-direction: column;
	background: #fff0f0;
	position: absolute;
	top: 60px;
	right: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
	z-index: 1000;
}

.mobile-nav a {
	padding: 12px 20px;
	border-bottom: 1px solid #ffcdd2;
	text-decoration: none;
	color: #b71c1c;
}

.mobile-nav a:last-child {
	border-bottom: none;
}

/* ANIMATION */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.burger {
		display: block;
	}

	.hero h1 {
		font-size: 1.7rem;
	}

	.hero p {
		font-size: 0.95rem;
	}
}

/* Ховер для десктоп-меню */
.nav a:hover {
	color: #e53935;
	text-decoration: underline;
	transition: 0.3s ease;
}

/* Ховер для мобільного меню */
.mobile-nav a:hover {
	background: #ffeaea;
	color: #e53935;
	transition: 0.3s;
}

/* Ховер на бургер */
.burger:hover {
	transform: scale(1.15);
	color: #e53935;
	transition: 0.3s;
}

/* Ховер для логотипу */
.logo:hover {
	color: #e53935;
	transition: 0.3s;
}

.dating-stats {
	background: #fff5f7;
	padding: 60px 20px;
	text-align: center;
	font-family: 'Segoe UI', sans-serif;
}

.dating-stats h2 {
	font-size: 2rem;
	color: #d81b60;
	margin-bottom: 40px;
}

.stats-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.stat-box {
	background: #ffe6ec;
	padding: 30px 20px;
	border-radius: 12px;
	width: 260px;
	box-shadow: 0 0 14px rgba(255, 0, 102, 0.1);
	transition: transform 0.3s ease;
}

.stat-box:hover {
	transform: translateY(-6px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #e91e63;
	margin-bottom: 10px;
}

.stat-box p {
	font-size: 1rem;
	color: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.stats-grid {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.dating-stats h2 {
		font-size: 1.6rem;
	}
}

.dating-cards {
	padding: 20px;
	background: #fafafa;
}

.dating-cards-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;

	max-width: 1100px;
	margin: 0 auto;
}

.card {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	padding: 40px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.card-left {
	/* flex: 1 1 140px; */
	text-align: center;
}
.card-left .logo {
	width: 120px;
	margin-bottom: 10px;
}
.provider-name {
	font-weight: 600;
	color: #880e4f;
	font-size: 1rem;
}

ul {
	list-style: none;
}

.card-middle {
	/* flex: 2 1 300px; */
	padding: 0 20px;
	max-width: 400px;
}
.badge {
	display: inline-block;
	background: #ffe0eb;
	color: #d81b60;
	font-size: 1rem;
	padding: 4px 10px;
	border-radius: 12px;
	margin-bottom: 30px;
}
.card-middle h3 {
	font-size: 1.1rem;
	margin: 0 0 10px;
	color: #222;
}
.card-middle ul {
	margin: 0;
	padding-left: 20px;
	color: #555;
	font-size: 0.95rem;
}

.card-right {
	/* flex: 0 1 160px; */
	text-align: center;
}
.score {
	font-size: 2rem;
	font-weight: bold;
	color: #2e7d32;
}

a {
	text-decoration: none;
}
.label {
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 30px;
}
.btn-primary {
	display: block;
	background: #d81b60;
	color: #fff;
	padding: 8px 16px;
	border-radius: 8px;
	margin-bottom: 8px;
	text-decoration: none;
	font-weight: 500;
}
.btn-primary:hover {
	background: #ad1457;
}
.btn-secondary {
	display: block;
	font-size: 0.85rem;
	color: #666;
	text-decoration: underline;
}

.rev-btn {
	display: block;
	margin-top: 40px;
	text-decoration: none;
	text-transform: uppercase;
	color: green !important;
	padding-bottom: 8px;
	border-bottom: 2px solid transparent;
	transition: all 0.5s ease;
	width: fit-content;
}

.rev-btn:hover {
	border-bottom: 2px solid green;
}

@media (max-width: 768px) {
	.card {
		flex-direction: column;
		align-items: flex-start;
	}
	.card-left,
	.card-middle,
	.card-right {
		flex: 1 1 100%;
		text-align: left;
	}
	.card-right {
		text-align: left;
		margin-top: 10px;
	}
}

.blog-section {
	padding: 60px 20px;
	background: #fff0f5;
	font-family: 'Segoe UI', sans-serif;
}

.blog-title {
	text-align: center;
	font-size: 2rem;
	color: #c2185b;
	margin-bottom: 40px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.blog-post {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	overflow: hidden;

	transition: transform 0.3s ease;
}

.blog-post:hover {
	transform: translateY(-5px);
}

.blog-post img {
	width: 100%;
	height: 300px;
	object-fit: cover;

	display: block;
}

.blog-content {
	padding: 20px;
}

.blog-content h3 {
	font-size: 1.2rem;
	color: #d81b60;
	margin-bottom: 10px;
}

.excerpt {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 12px;
}

.blog-date {
	font-size: 0.8rem;
	color: #999;
}

.blog-footer {
	margin-top: 40px;
	text-align: center;
}

.btn-more {
	background: #d81b60;
	color: #fff;
	padding: 10px 24px;
	border-radius: 24px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
}

.btn-more:hover {
	background: #ad1457;
}

.text {
	max-width: 900px;
	padding: 60px 0;
	margin: 0 auto;
}

.text h2 {
	font-size: 1.5em;
	margin-top: 1.8em;
	color: #1a1a1a;
}

.text p {
	margin-bottom: 1.5em;
	font-size: 1rem;
}

@media (max-width: 768px) {
	.text h2 {
		font-size: 1.3em;
	}

	.text p {
		font-size: 0.95rem;
	}
}

.faq-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}

.faq-title {
	font-size: 2rem;
	margin-bottom: 30px;
	text-align: center;
}

.faq-item {
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.faq-question {
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	padding-right: 30px;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1.5rem;
	line-height: 1;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '−';
}

.faq-answer {
	display: none;
	margin-top: 10px;
	font-size: 1rem;
	line-height: 1.6;
}

.faq-item.active .faq-answer {
	display: block;
}

@media (max-width: 768px) {
	.faq-title {
		font-size: 1.5rem;
	}

	.faq-question {
		font-size: 1rem;
	}

	.faq-answer {
		font-size: 0.95rem;
	}
}

.top3-wrapper {
	max-width: 600px;
	margin: auto;
	padding: 30px 0;
}

.top3-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 30px;
}

.site-box {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	padding: 20px;
	margin-bottom: 30px;
	position: relative;
}

.site-label {
	position: absolute;
	top: -10px;
	right: 20px;
	background: #e0e0e0;
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 10px;
	font-weight: bold;
}

.site-rank {
	position: absolute;
	top: -10px;
	left: 20px;
	font-weight: bold;
	font-size: 1.2rem;
	background: #f5f5f5;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
}

.site-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.site-brand {
	flex: 1;
	min-width: 100px;
}

.site-brand img {
	max-width: 150px;
	height: auto;
	border-radius: 8px;
}

.site-button {
	flex: 0 0 auto;
}

.site-button a {
	background: #e91e63;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;

	transition: all 0.5s ease;
}

.site-button a:hover {
	background: #ad1457;
}

.site-features {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
}

.feature-item {
	flex: 1 1 100px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 10px;
	padding: 10px;
	font-size: 0.9rem;
}

.details-toggle-btn {
	margin-top: 15px;
	font-weight: bold;
	color: #777;
	cursor: pointer;
}

.site-details {
	margin-top: 10px;
	/* display: none; */
	font-size: 0.95rem;
}

.site-details ul {
	padding-left: 20px;
	list-style: none;
}

.site-details ul li::before {
	content: '✔';
	color: green;
	margin-right: 8px;
}

@media (max-width: 768px) {
	.site-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-button {
		width: 100%;
		text-align: left;
	}

	.site-button a {
		width: 100%;
	}
}

.footer-dx {
	background-color: #37363d;
	color: #fff;
	padding: 40px 0;
}

.footer-dx__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

.footer-dx__column {
	min-width: 180px;
}

.footer-dx__logo {
	font-size: 1.8rem;
	color: #f45b75;
	font-weight: bold;
}

.footer-dx__logo span {
	color: #fff;
	font-weight: normal;
}

.footer-dx__heart {
	font-size: 1.5rem;
	vertical-align: middle;
}

.footer-dx__copyright {
	margin: 10px 0;
	font-size: 0.95rem;
	color: #ddd;
}

.footer-dx__legal,
.footer-dx__column ul {
	list-style: none;
	padding: 0;
	margin: 10px 0 0 0;
}

.footer-dx__legal li,
.footer-dx__column ul li {
	margin-bottom: 8px;
}

.footer-dx__legal a,
.footer-dx__column a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	font-size: 0.95rem;
}

.footer-dx__title {
	font-weight: bold;
	margin-bottom: 10px;
	border-bottom: 2px solid #f45b75;
	display: inline-block;
	padding-bottom: 4px;
}

.footer-dx__spaced-list {
	margin-top: 35px;
}

.footer-dx__social-circle {
	width: 40px;
	height: 40px;
	background-color: #f45b75;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.footer-dx__social-circle img {
	width: 20px;
	height: 20px;
}

.footer-dx__contact p {
	font-size: 0.9rem;
	margin: 6px 0;
}

.footer-dx__trustpilot img {
	margin-top: 20px;
	width: 120px;
	height: auto;
}

@media (max-width: 768px) {
	.footer-dx__container {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.footer-dx__logo {
		text-align: center;
	}

	.footer-dx__column {
		align-items: center;
	}

	.footer-dx__social-circle {
		margin: 0 auto 10px;
	}
}

.review-section {
	max-width: 960px;
	margin: auto;
	padding: 30px 20px;
	font-family: Arial, sans-serif;
	color: #2b2b2b;
	background: #fff;
}

.review-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.review-logo img {
	width: 160px;
	height: auto;
}

.review-meta {
	flex: 1;
}

.review-date {
	font-size: 0.9rem;
	color: #888;
	margin: 0;
}

.review-title {
	font-size: 1.8rem;
	margin: 5px 0;
}

.review-features {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 25px 0;
}

.feature-icon {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90px;
	font-size: 1.3rem;
}

.feature-icon span {
	margin-top: 5px;
	font-size: 0.85rem;
}

.review-description {
	margin-bottom: 30px;
	line-height: 1.6;
}

.review-cta {
	text-align: center;
	margin: 30px 0;
}

.review-button {
	display: inline-block;
	background-color: #e62c66;
	color: #fff;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: bold;
	text-decoration: none;
}

.review-table {
	overflow-x: auto;
	margin: 20px 0;
}

.review-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.review-table th,
.review-table td {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: left;
}

.review-table th {
	background-color: #f2f2f2;
}

@media (max-width: 768px) {
	.review-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.feature-icon {
		width: 100px;
	}

	.review-title {
		font-size: 1.5rem;
	}

	.review-button {
		width: 100%;
		text-align: center;
	}
}

.profile-picture-guide {
	background: #fefefe;
	padding: 4vw 5vw;
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	color: #2c2c2c;
}

.container {
	max-width: 900px;
	margin: auto;
}

.title {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: 0.3em;
	font-weight: 700;
	color: #222;
}

.date {
	color: #888;
	font-size: 0.95rem;
	margin-bottom: 1.5em;
}

.image-wrapper {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;

	display: block;
}

.content-block {
	margin-bottom: 2.5rem;
}

.subtitle {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #444;
}

.quote {
	font-style: italic;
	margin-top: 1rem;
	color: #555;
}

@media (max-width: 600px) {
	.profile-picture-guide {
		padding: 6vw 4vw;
	}

	.subtitle {
		font-size: 1.2rem;
	}

	.title {
		font-size: 1.8rem;
	}
}

.about-section {
	background: #fcfcfc;
	padding: 6vw 5vw;
	font-family: 'Roboto', sans-serif;
	color: #333;
}

.about-wrapper {
	max-width: 960px;
	margin: 0 auto;
}

.about-title {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
	color: #222;
}

.about-block {
	margin-bottom: 2rem;
}

.about-block h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
	color: #2a2a2a;
}

.about-block p {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
}

.about-block ul {
	padding-left: 1.3rem;
	margin-top: 0.8rem;
	line-height: 1.6;
}

.about-block ul li {
	margin-bottom: 0.5rem;
	font-size: 0.97rem;
	color: #444;
}

@media (max-width: 600px) {
	.about-section {
		padding: 4rem 1rem;
	}

	.about-block h3 {
		font-size: 1.1rem;
	}

	.about-block p,
	.about-block ul li {
		font-size: 0.9rem;
	}
}

.legal-section {
	background-color: #ffffff;
	padding: 5vw 6vw;
	font-family: 'Helvetica Neue', sans-serif;
	color: #2e2e2e;
}

.legal-wrapper {
	max-width: 960px;
	margin: 0 auto;
}

.legal-wrapper h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: 2rem;
	color: #1a1a1a;
	text-align: center;
}

.legal-block {
	margin-bottom: 2.5rem;
}

.legal-block h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.6rem;
	color: #3a3a3a;
}

.legal-block p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4a4a4a;
}

.legal-block ul {
	list-style: none;
	padding: 0;
	font-size: 0.95rem;
	line-height: 1.7;
}

.legal-block ul li {
	margin-bottom: 0.4rem;
}

.legal-block a {
	color: #0073cc;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.legal-section {
		padding: 2rem 1rem;
	}

	.legal-block h3 {
		font-size: 1.15rem;
	}

	.legal-block p,
	.legal-block ul {
		font-size: 0.88rem;
	}
}

.privacy-policy-section {
	background-color: #f8f8f8;
	padding: 5vw 6vw;
	font-family: 'Open Sans', sans-serif;
	color: #333;
}

.privacy-container {
	max-width: 900px;
	margin: 0 auto;
	background-color: #fff;
	padding: 2rem 2.5rem;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.privacy-container h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	margin-bottom: 2rem;
	color: #111;
	text-align: center;
}

.privacy-block {
	margin-bottom: 2rem;
}

.privacy-block h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #005ea5;
}

.privacy-block p {
	font-size: 0.96rem;
	line-height: 1.6;
	color: #444;
}

.privacy-block a {
	color: #0073cc;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.privacy-container {
		padding: 1.5rem 1rem;
	}

	.privacy-block h3 {
		font-size: 1.05rem;
	}

	.privacy-block p {
		font-size: 0.9rem;
	}
}

.report-section {
	background: #fafafa;
	padding: 5vw 6vw;
	font-family: 'Arial', sans-serif;
}

.report-container {
	max-width: 640px;
	margin: auto;
	background: #fff;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.report-container h2 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: #222;
}

.report-container p {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 1.5rem;
}

form label {
	display: block;
	margin-top: 1rem;
	font-weight: 600;
	font-size: 0.92rem;
	color: #333;
}

form input,
form textarea {
	width: 100%;
	padding: 0.65rem;
	margin-top: 0.4rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 0.95rem;
}

form textarea {
	resize: vertical;
	min-height: 100px;
}

.captcha-wrapper {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.captcha-code {
	padding: 0.65rem 1rem;
	background: #eee;
	border-radius: 6px;
	font-weight: bold;
	font-size: 1rem;
}

.checkbox-label {
	margin-top: 1.2rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

form button {
	margin-top: 1.5rem;
	background-color: #d62828;
	color: white;
	padding: 0.7rem 1.6rem;
	font-size: 1rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

form button:hover {
	background-color: #bb2020;
}

#successMessage {
	margin-top: 1.5rem;
	color: green;
	font-weight: 600;
	display: none;
}

#successMessage.show {
	display: block;
}

@media (max-width: 600px) {
	.report-container {
		padding: 1.5rem;
	}

	form button {
		width: 100%;
	}
}
