/* Homepage Specific Styles */
.homepage-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

#react-root {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5; /* Background to indicate React component space */
}

/* Hero Section Styles */
.hero-section {
	width: 100%;
	height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to bottom right, #ff7e5f, #feb47b);
	color: #ffffff;
	text-align: center;
	padding: 20px;
}

.hero-section h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.hero-section p {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

/* About Section Styles */
.about {
	padding: 60px 20px;
	background-color: #f5f5f5;
	text-align: center;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

.about-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.about-content p {
	font-size: 1.2rem;
	line-height: 1.6;
}

/* Call to Action Section Styles */
.cta-section {
	padding: 60px 20px;
	background-color: #333333;
	color: #ffffff;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.cta-button {
	background-color: #ff7e5f;
	color: #ffffff;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #feb47b;
}



/* Leaderboard Styles */
.leaderboard {
	width: 90%;
	max-width: 1200px;
	margin: 40px auto;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.table-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.table-item {
	background: #f5f5f5;
	padding: 20px;
	width: calc(33% - 40px);
	min-width: 250px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.table-item h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.table-item p {
	font-size: 1rem;
}


/* Additional styles for cards, buttons, etc., as per design requirements */
