	/* Reset and base styles */
	html, body {
		margin: 0;
		padding: 0;
		height: 100%;
		overflow: hidden;
	}

  
	body {
		font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		background: #000;
	}
	
	.cg-bottom-nav button:hover, .cg-nav-item.active {
		background-color: transparent !important;
	}
	
	/* App container */
	.cg-app-container {
		max-width: 480px;
		margin: 0 auto;
		background: white;
		height: 100vh;
		position: relative;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}
	
	/* App header */
	.cg-app-header {
		background: #38787A;
		color: white;
		padding: 15px 20px 5px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
	}
	
	.cg-app-header h1 {
		color: white;
		font-size: 20px;
		margin: 0;
		font-weight: 600;
		font-family: 'Poppins', sans-serif;
		order: 2;
	}
	
	.cg-header-icon {
		width: 120px;
		cursor: pointer;
		order: 1;
	}
	
	.cg-header-icon img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	
	/* Content area */
	.cg-content-area {
		flex: 1;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 100px;
		background: #38787A;
	}
	
	/* Tab content */
	.cg-tab-content {
		background: #38787A;
		display: none;
		padding: 20px;
		animation: fadeIn 0.3s ease-in;
	}
	
	.cg-tab-content.active {
		display: block;
	}
	
	@keyframes fadeIn {
		from { opacity: 0; transform: translateY(10px); }
		to { opacity: 1; transform: translateY(0); }
	}
	
	/* Today Tab Styles */
	.cg-today-card {
		background: white;
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 20px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	}
	
	.cg-today-card h3 {
		font-size: 18px;
		margin: 0 0 10px 0;
		color: black;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
	}
	
	.cg-today-card p {
		color: black;
	}
	
	.cg-gospel-text {
		font-style: italic;
		line-height: 1.6;
		color: black;
		margin: 10px 0;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
	}
	
	.cg-job-card {
		border-left: 4px solid #3A787A;
		padding-left: 15px;
	}
	
	.cg-job-title {
		font-weight: 600;
		color: #3A787A;
		margin-bottom: 5px;
		font-family: 'Poppins', sans-serif;
	}
	
	.cg-job-company {
		color: #666;
		font-size: 14px;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
	}
	
	.cg-job-match {
		display: inline-block;
		background: #e8f4f4;
		color: #3A787A;
		padding: 4px 12px;
		border-radius: 20px;
		font-size: 12px;
		margin-top: 8px;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
	}
	
	/* Pray Tab Styles */
	.cg-faith-nav {
		display: none;
	}
	
	/* Work Tab Styles */
	.cg-search-bar {
		display: flex;
		gap: 10px;
		margin-bottom: 20px;
	}
	
	.cg-search-bar input {
		flex: 1;
		padding: 12px;
		border: 1px solid #ddd;
		border-radius: 8px;
		font-size: 16px;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
	}
	
	.cg-search-bar button {
		background: #3A787A;
		color: white;
		border: none;
		padding: 12px 20px;
		border-radius: 8px;
		cursor: pointer;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
	}
	
	.cg-job-list .cg-job-item {
		background: white;
		border-radius: 8px;
		padding: 15px;
		margin-bottom: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		cursor: pointer;
		transition: transform 0.2s;
	}
	
	/* Learn Tab Styles */
	.cg-podcast-player {
		background: #f8f9fa;
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 20px;
	}
	
	.cg-podcast-title {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 10px;
		font-family: 'Poppins', sans-serif;
	}
	
	.cg-play-button {
		width: 60px;
		height: 60px;
		background: #3A787A;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 24px;
		cursor: pointer;
		margin: 20px auto;
	}
	
	/* More Tab Styles */
	.cg-menu-item {
		display: flex;
		align-items: center;
		padding: 15px 0;
		border-bottom: 1px solid #eee;
		cursor: pointer;
		text-decoration: none;
		color: inherit;
	}
	
	.cg-menu-item:last-child {
		border-bottom: none;
	}
	
	.cg-menu-item .icon {
		width: 80px;
		font-size: 18px;
		color: white;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.cg-menu-item .label {
		flex: 1;
		color: white;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
	}
	
	.cg-menu-item .arrow {
		color: #999;
		font-family: 'Poppins', sans-serif;
	}
	
	/* Bottom Navigation */
	.cg-bottom-nav {
		background: white;
		border-top: 1px solid #edf7f3;
		display: flex;
		justify-content: space-around;
		padding: 8px 0;
		flex-shrink: 0;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		max-width: 480px;
		margin: 0 auto;
		box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	}
	
	.cg-nav-item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 8px;
		cursor: pointer;
		border: none;
		background: none;
		color: #999;
	}
	
	.cg-nav-item:hover {
		color: #999;
	}
	
	.cg-nav-item.active {
		color: #38787A;
	}
	
	.cg-nav-item .icon {
		font-size: 20px;
		margin-bottom: 4px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 24px;
	}
	
	.cg-nav-item .label {
		font-size: 12px;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
	}
	
	/* Typography updates */
	h3, h4 {
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
	}
	
	p, small, div {
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
	}
	
	button {
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
	}
	
	/* Daily Reading Styles */
	.cg-reading-content {
		line-height: 1.7;
		color: #444;
		font-family: 'Poppins', sans-serif;
		font-weight: 400;
	}
	
	.cg-reading-content a {
		color: #3A787A;
	}
	
	.cg-reading-content p {
		margin-bottom: 15px;
	}
	
	.cg-reading-content h4,
	.cg-reading-content h5,
	.cg-reading-content h6 {
		color: #3A787A;
		margin: 20px 0 10px 0;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
	}
	
	/* Responsive */
	@media (max-width: 480px) {
		.cg-app-container {
			max-width: 100%;
			border-radius: 0;
		}
	}
	
	/* Hide WordPress admin bar */
	#wpadminbar {
		display: none !important;
	}
	
	html {
		margin-top: 0 !important;
	}
	
	/* Faith Navigation - Pinned above bottom nav */
	.cg-faith-nav-container {
		background: white;
		display: none;
		padding: 15px 20px 10px;
		flex-shrink: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		position: fixed;
		bottom: 70px;
		left: 0;
		right: 0;
		z-index: 99999999;
		margin-bottom: 7px;
		max-width: 480px;
		margin: 0 auto;
	}
	
	.cg-faith-nav-container.active {
		display: block;
	}
	
	.cg-faith-nav-items {
		display: flex;
		gap: 10px;
		min-width: max-content;
		padding: 0;
		margin: 0;
	}
	
	.cg-faith-nav-item {
		background: #f0f8f8;
		border: none;
		padding: 10px 16px;
		border-radius: 20px;
		white-space: nowrap;
		cursor: pointer;
		transition: all 0.3s;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
		color: #333;
		font-size: 14px;
		line-height: 1;
	}

	
	.cg-faith-nav-item.active {
		background: #3A787A;
		color: white;
	}
	
	/* Faith sub-content */
	.cg-faith-sub-content {
		display: none;
		animation: fadeIn 0.3s ease-in;
	}
	
	.cg-faith-sub-content.active {
		display: block;
	}
	

	/* Fallback for browsers without :has() support */
	.cg-today-card {
		overflow-x: hidden;
	}
	
	/* Override any inline styles that might cause overflow */
	.cg-today-card > * {
		max-width: 100%;
		box-sizing: border-box;
	}
	
			
	.learn-more-container {
		margin-bottom: 50px;
		margin-top: -30px;
		display: block;
	}
	
	.learn-more-toggle {
		background: none;
		border: none;
		color: black;
		cursor: pointer;
		text-decoration: none;
		font-size: 14px;
		padding: 0;
		margin-bottom: 10px;
		float: right;
	}
	
	.learn-more-toggle:hover {
		color: offwhite;
	}
	
	.learn-more-content {
		display: none;
		padding: 10px 0;
		border-top: 0px solid #eee;
		margin-top: 10px;
		color: black;
	}
	
	.learn-more-content.show {
		display: block;
	}
	
	.learn-more-content p {
		margin: 0;
		line-height: 1.6;
		color: black;
	}
	
	.learn-more-content a {
		color: #38787A;
		text-decoration: none;
	}
	
	.learn-more-content a:hover {
		text-decoration: underline;
	}
	
	.toggle-arrow {
		display: inline-block;
		transition: transform 0.3s ease;
		margin-left: 5px;
	}
	
	.toggle-arrow.rotated {
		transform: rotate(180deg);
	}
	
	h2 {
		color: black;
	}