/* Angel Card Reading Plugin Styles */

#angelReadings {
	margin: 20px 0;
}

#angelReadings .contentpaneopen {
	width: 100%;
	border-collapse: collapse;
}

#angelReadings .contentpaneopen td {
	padding: 10px;
}

#cards {
	position: relative;
	overflow: visible;
	min-height: 150px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

div.cardx {
	display: inline-block;
	width: 145px;
	margin: 0 5px;
	vertical-align: top;
}

div.cardx a {
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
}

div.cardx img {
	display: block;
	border: 0;
	transition: transform 0.2s ease;
}

div.cardx:hover img {
	transform: scale(1.05);
}

#shuffle.buybottle,
a.buybottle {
	display: inline-block;
	padding: 8px 20px;
	background-color: #4a90e2;
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#shuffle.buybottle:hover,
a.buybottle:hover {
	background-color: #357abd;
	color: #ffffff !important;
	text-decoration: none;
}

#shuffle.buybottle:active,
a.buybottle:active {
	background-color: #2a5f8f;
}

/* Card content display area */
#angel-card-content {
	margin-top: 30px;
	padding: 20px;
	clear: both;
	min-height: 100px;
}

#angel-card-content.loading {
	text-align: center;
	padding: 40px;
}

#angel-card-content .loading-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #4a90e2;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#angel-card-content .card-content-wrapper {
	animation: fadeIn 0.5s ease-in;
	max-width: 100%;
}

#angel-card-content .card-featured-image {
	margin-bottom: 20px;
	text-align: center;
}

#angel-card-content .card-featured-image img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

#angel-card-content .card-title {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #4a90e2;
}

#angel-card-content .card-content {
	line-height: 1.6;
}

#angel-card-content .card-content p {
	margin-bottom: 15px;
}

#angel-card-content .card-content img {
	max-width: 100%;
	height: auto;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

