/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Chrome Animation Button - Override Bootstrap */
a.button-chrome,
button.button-chrome,
.button.button-chrome {
	background-color: #d8d8d8 !important;
	color: #1a1a1a !important;
	border: 2px solid #888 !important;
	position: relative !important;
	overflow: visible !important;
	box-shadow: inset 0 2px 4px rgba(255,255,255,0.9), inset 0 -2px 4px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.4) !important;
	animation: chromeGlow 2.5s linear infinite !important;
	transition: none !important;
}

a.button-chrome:hover,
button.button-chrome:hover,
.button.button-chrome:hover {
	background-color: #d8d8d8 !important;
	animation: chromeGlow 1.2s linear infinite !important;
	transition: none !important;
}

@keyframes chromeGlow {
	0% {
		box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), inset 0 -2px 4px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.4);
	}
	50% {
		box-shadow: inset 0 2px 8px rgba(255,255,255,1), inset 0 -2px 4px rgba(0,0,0,0.5), 0 8px 16px rgba(0,0,0,0.6);
	}
	100% {
		box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), inset 0 -2px 4px rgba(0,0,0,0.3), 0 4px 8px rgba(0,0,0,0.4);
	}
}

/* Timer Pulse Animation */
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.1); }
}

/* FAQ Accordion Styling */
#accordion-faq .accordion-item {
	background-color: #ffffff !important;
	border: 1px solid #e0e0e0 !important;
	margin-bottom: 12px !important;
	border-radius: 4px !important;
	overflow: hidden !important;
}

#accordion-faq .accordion-header {
	background-color: #f0f7ff !important;
	border-bottom: 1px solid #e0e0e0 !important;
}

#accordion-faq .accordion-button {
	color: #1e3c72 !important;
	font-weight: 600 !important;
	padding: 16px 20px !important;
}

#accordion-faq .accordion-button:hover {
	background-color: #e8f2ff !important;
}

#accordion-faq .accordion-button:not(.collapsed) {
	background-color: #2a5298 !important;
	color: #ffffff !important;
}

#accordion-faq .accordion-body {
	background-color: #ffffff !important;
	color: #333 !important;
	padding: 16px 20px !important;
	line-height: 1.6;
}

