/* Minification failed. Returning unminified contents.
(3126,10): run-time error CSS1030: Expected identifier, found ' '
(3126,11): run-time error CSS1031: Expected selector, found '16px'
(3126,11): run-time error CSS1025: Expected comma or open brace, found '16px'
(3183,1): run-time error CSS1019: Unexpected token, found '}'
 */
/*.tab-head {
    font-size: 21px;
    font-weight: 400;
    color: #555;
    background-color: transparent !important;*/
    /*padding: 0px 10px;*/
    /*text-align: left;
    border: none !important;
    color: #333;
    font-weight: 600;*/
    /* CHANGE THE COLOR CODE ON THIS LINE */
    /*border-bottom: 3px solid #d9534f !important;*/ /* Matches .btn-danger color */
    /*padding-bottom: 5px;*/ /* space between text and border */
/*}*/

.chart-info{
    display:none;
}

.stat-add {
    padding-top: 10px;
    padding-left: 10px;
}

.outcome-head {
    font-weight: bold;
    font-size: larger;
}

.img-spell-rec {
    min-width: 125px;
}

.chart-padding {
    padding-left: 0;
}

.charcounter {
    font-size: 12px;
    color: gray;
    text-align: right;
}

textarea {
    overflow: hidden;
}

.chart-cells-right {
    padding: 0 10px 0 0;
    /*width: 55%;*/
    /*text-align: right;*/
    font-size: 16px;
    font-weight: bold !important;
}

.chart-cells-left {
    padding: 0;
    /*width: 45%;*/
    /*text-align: left;*/
    font-size: 16px;
}

/* ADDED: Makes the main trend rating text bolder and larger for better visibility. */
#lblTrendRating {
    font-weight: bold;
    font-size: 1.2em; /* 20% larger */
}

/*
 * File: CustomerProfileWidget.css
 * Version: 4.0
 * Description: Contains all necessary styles for the CustomerProfileWidget.ascx control.
 * Extracted from tarotflow.css.
*/

/* --- Main Widget Container --- */
.customer-profile-widget {
	margin-bottom: 15px;
}

/* --- Profile Container Layout (Flexbox) --- */
/* --- NEW User Profile Layout (Name Below Picture) --- */
/* Main container: creates side-by-side columns for pic and info */
.user-profile-container {
	display: flex;
	flex-direction: row; /* Lay out columns side-by-side */
	align-items: flex-start; /* Align to the top */
	gap: 2px; /* Space between the two columns */
	max-width: 250px;
}
/* Column 1: Picture and Name */
.user-details-col {
	display: flex;
	flex-direction: column; /* Stack image and name vertically */
	align-items: center; /* Center them horizontally */
}
/* Right column container: stacks the name/heart row and chart button row */
.user-profile-info-col {
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important; /* Pushes top and bottom content apart */
	min-height: 70px !important; /* Forces column to match the profile pic height */
	flex-grow: 1;
}
/* Column 2: Icons */
.user-icons-col {
	display: flex;
	flex-direction: column; /* Stack icons vertically */
	justify-content: space-between; /* Pushes icons to the top and bottom */
	height: 70px; /* Match the height of .flow-profile-pic */
}
/* Top row of right column: styles the heart and name */
.info-col-top-row {
	display: flex;
	align-items: center;
	gap: 5px; /* Space between heart and name */
}

/* (No extra styling is needed for the bottom row) */


/* --- Element Styling --- */
.flow-profile-pic {
	width: 70px;
	height: 70px;
	border-radius: 0; /* Matched to TarotFlow for consistency */
	border: 1px solid #ddd;
}

.flow-user-name {
	font-weight: bold;
	font-size: 14px;
	white-space: nowrap;
	color: #333;
}

a {
	text-decoration: none !important;
}

	a:hover .flow-user-name {
		text-decoration: underline !important;
	}


/* --- Button Styling --- */
.btn-ins {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	line-height: 1;
	cursor: pointer;
}

	.btn-ins:hover {
		background-color: #f0f0f0;
	}

	.btn-ins img {
		width: 25px;
		height: 25px;
		vertical-align: middle;
	}

.img-adore {
	/* Specific styles for the adore icon if needed */
}

/* --- Status Message --- */
.widget-status {
	margin-top: 5px;
	font-style: italic;
}

.errorme {
	color: #a94442; /* Red for errors */
}

.hideme {
	color: #3c763d; /* Green for success */
}


/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
	.flow-profile-pic {
		width: 50px;
		height: 50px;
	}

	.user-profile-info-col {
		min-height: 50px !important;
	}

	.flow-user-name {
		font-size: 13px;
	}
}
/* 7. NEW: Make the commenter's profile picture smaller */
.insight-listing-container img {
	width: 20px;
	height: 20px;
	padding-right: 0 !important;
	border-radius: 50%; /* This will make the image a circle */
}
/* Styles for the refactored Explore.aspx page */

/* --- CHANGE START --- */
/* REASON: To style the new scroller with arrow buttons. */
/* ADDED: Styles for the wrapper, arrows, and updated container. */

.deck-scroller-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.scroll-arrow {
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	color: #333;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s ease;
}

	.scroll-arrow:hover {
		background-color: #e0e0e0;
	}

	.scroll-arrow:disabled {
		opacity: 0.3;
		cursor: not-allowed;
	}

#scroll-left {
	margin-right: 10px;
}

#scroll-right {
	margin-left: 10px;
}

.deck-selector-container {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: hidden; /* Hide the default scrollbar */
	scroll-behavior: smooth; /* Enable smooth scrolling for JS actions */
	padding: 10px 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
}
/* --- CHANGE END --- */

.deck-selector-img {
	height: 100px;
	margin: 0 5px; /* Adjusted margin for better spacing */
	border: 3px solid transparent;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	flex-shrink: 0; /* Prevent images from shrinking */
}

	.deck-selector-img:hover {
		border-color: #d9534f;
		transform: scale(1.05);
	}

	/* --- CHANGE START --- */
	/* REASON: To make the active tab darker as requested. */
	/* ADDED: A background color and box-shadow to the active class. */
	.deck-selector-img.active {
		border-color: #c9302c;
		background-color: #333; /* Dark background for active state */
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Darker shadow */
		transform: scale(1.1);
	}
/* --- CHANGE END --- */

#deck-display-area .panel-heading {
	font-size: 1.5em;
	font-weight: bold;
}

#deck-display-area .carousel-inner > .item > a > img,
#deck-display-area .carousel-inner > .item > img {
	width: 100%;
	margin: auto;
	max-width: 400px;
}

.RadComboBox {
    white-space: nowrap !important;
}

    .RadComboBox .rcbInput {
        height: 40px !important;
    }

.RadGrid_Bootstrap .rgRow > td, .RadGrid_Bootstrap .rgAltRow > td {
    border-style: none !important;
    padding: 0px 5px 0px 0px !important;
}

.grid-container {
    height: 750px;
    width: 100%;
    margin-top: 10px;
}

.rgDataDiv {
    height: 425px !important;
}

.white-font {
    color: white;
}

.guides-min-width {
    min-width: 300px;
    margin-bottom: 10px !important;
}

.img-portrait-guides {
    cursor: pointer;
}

.grid-member-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    /*border-radius: 50%;*/
}

/* Default (mobile) styles: items are stacked vertically */
.member-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px;
}

.member-info {
    display: flex;
    flex-direction: column;
}

/* Desktop styles: applies only to screens wider than 768px */
@media (min-width: 769px) {
    .member-cell {
        flex-direction: row; /* Puts items side-by-side */
        align-items: center; /* Vertically aligns items in the middle */
        gap: 15px;
        padding-left: 15px; /* Apply padding here */
    }
}

/*
 * File: insightcomments.css
 * Version: 1.5
 * Description: Added styling for the new per-comment 'adore-status' message div.
 */
/*
/* =================================================================== */
/* Base style for the status message area */
.insight-comments-wrapper .insight-status {
	padding: 8px;
	/* margin-top: 10px; */ /* REFACTOR: Replaced with margin-bottom */
	margin-bottom: 10px;
	border-radius: 4px;
	transition: opacity 0.5s ease-in-out; /* Smooth fade-out transition */
	opacity: 1;
	display: none; /* Hide by default, JS will show it */
}

	/* Style for success messages (e.g., "Saved!") */
	.insight-comments-wrapper .insight-status.hideme {
		background-color: #dff0d8; /* Light green */
		border: 1px solid #d6e9c6;
		color: #3c763d;
	}

	/* Style for error messages (e.g., "Network error.") */
	.insight-comments-wrapper .insight-status.errorme {
		background-color: #f2dede; /* Light red */
		border: 1px solid #ebccd1;
		color: #a94442;
	}


/* Hide interactive buttons by default; JavaScript will show them when appropriate. */
.insight-comments-wrapper .btn-show-more-comments,
.insight-comments-wrapper .btn-hide-comments,
.insight-comments-wrapper .insight-listing .btn-ins-add,
.insight-comments-wrapper .insight-listing .btn-guide-make,
.insight-comments-wrapper .insight-listing .btn-ins-rate {
	display: none;
}

	.insight-comments-wrapper .btn-show-more-comments.is-visible,
	.insight-comments-wrapper .btn-hide-comments.is-visible,
	.insight-comments-wrapper .insight-listing .btn-guide-make.is-visible,
	.insight-comments-wrapper .insight-listing .btn-ins-rate.is-visible {
		display: inline-block !important; /* Use inline-block for proper button rendering */
	}

/* Spacing for the 'show more' and 'hide' links */
.insight-comments-wrapper .btn-show-more-comments {
	margin-left: 10px;
}

.insight-comments-wrapper .btn-hide-comments {
	margin-left: 5px;
}

/* Top margin for each individual comment listing */
.insight-comments-wrapper .insight-listing {
	margin-top: 15px;
}

/* Remove the top margin from the very first comment to align it with the title */
.insight-comments-wrapper .insight-listing-container .insight-listing:first-child {
	margin-top: 0;
}

.insight-comments-wrapper .add-comment-container {
	/* margin-top: 10px; */ /* REFACTOR: This is now handled by the wrapper */
}

.insight-comments-wrapper .btn-add-new-comment {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	display: inline-block;
}

	.insight-comments-wrapper .btn-add-new-comment:hover img {
		opacity: 0.7;
	}

.insight-comments-wrapper .comment-controls-wrapper {
	margin-top: 15px;
}
.insight-comments-wrapper .adore-status {
	padding: 5px;
	margin-bottom: 5px;
	border-radius: 3px;
	transition: opacity 0.5s ease-in-out;
	opacity: 1;
	display: none; /* Hide by default, JS will show it */
	text-align: left;
}

	.insight-comments-wrapper .adore-status.hideme {
		background-color: #dff0d8;
		border: 1px solid #d6e9c6;
		color: #3c763d;
	}

	.insight-comments-wrapper .adore-status.errorme {
		background-color: #f2dede;
		border: 1px solid #ebccd1;
		color: #a94442;
	}
/* Add this to your main stylesheet for the new comment highlight effect.*/
.new-comment-highlight {
	/* Start with a transparent background */
	background-color: rgba(255, 248, 225, 0);
	/* Animate the background color change over X seconds */
	animation: highlight-fade 3s 5;
}

@keyframes highlight-fade {
	/* Peak highlight color at 25% through the animation */
	35% {
		background-color: #fff8e1; /* Light yellow */
	}
	/* Fade back to transparent by the end */
	100% {
		background-color: rgba(255, 248, 225, 0);
	}
}
/*
 * File: newreading.css
 * Version: 7.2
 * Description: Added styles for the new contextual email button to position
 * it within the large card display area. All original styles have been preserved.
 *
 * MODIFICATIONS:
 * - No changes needed in the CSS for the new JavaScript-based card sizing.
 * The JS will dynamically set the `width` and `height` properties on the card elements.
*/

.reading-container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.reading-wrapper {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.hidden {
	display: none !important;
}

.explore-hidden {
	display: none !important;
}

#shuffle-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 70vh;
	width: 100%;
	padding-top: 20px;
}

.reading-header-shuffle {
	text-align: center;
	margin-bottom: 20px;
}

.deck-shuffle {
	position: relative;
	max-width: 800px;
	width: 95%;
	aspect-ratio: 2 / 1;
	cursor: pointer;
	margin: 0 auto;
	transition: width 0.3s ease;
}

	.deck-shuffle .cards {
		position: absolute;
		border: 1px solid #999;
		border-radius: 8px;
		box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
		background-color: white;
	}

#shuffle-container .msg {
	font-size: 1.2em;
	font-weight: bold;
	color: #555;
	height: 30px;
	margin-bottom: 20px;
}

.reading-container {
	font-family: 'Raleway', sans-serif;
}

.reading-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

/*.tab-head {
	margin-top: 0;
	font-size: 28px;
}*/

.reading-meta {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

	.reading-meta .reading-rating {
		margin-left: 15px;
	}

.reading-saved {
	font-size: 14px;
	padding: 8px;
	border-radius: 4px;
	margin-top: 10px;
	display: none; /* Initially hidden */
}

.pulseme {
	animation: pulse-animation 1s infinite;
	background-color: #dff0d8;
	border: 1px solid #d6e9c6;
	color: #3c763d;
}

.errorme {
	animation: pulse-animation 1s infinite;
	background-color: #f2dede;
	border: 1px solid #ebccd1;
	color: #a94442;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
	}

	100% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
}

.reading-header-right {
	display: flex;
	gap: 10px;
}

.btn-icon {
	background: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #333;
}

	.btn-icon:hover {
		background: #e0e0e0;
	}

.large-card-and-nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.large-card-container {
	position: relative; /* Make this the positioning context for the email button */
	border: 1px solid #ddd;
	padding: 15px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	text-align: center;
	width: 100%;
	max-width: 350px;
}

.btn-nav-arrow {
	flex-shrink: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	cursor: pointer;
	z-index: 10;
	color: #333;
	transition: background-color 0.2s ease, color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.btn-nav-arrow:hover:not(:disabled) {
		background-color: #d9534f;
		color: #fff;
		border-color: #b94440;
	}

	.btn-nav-arrow.prev {
		margin-right: 10px;
	}

	.btn-nav-arrow.next {
		margin-left: 10px;
	}

.position-title-container {
	/*position: relative; /* ADDED: Make this a positioning context for the new email button. */
	min-height: 50px;
	margin-bottom: 10px;
}

.position-title {
	font-weight: bold;
	font-size: 16px;
	border-bottom: 2px solid #d9534f;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 5px;
}

.arcana-title {
	font-size: 14px;
	color: #666;
	display: none;
}

.large-card-display-area {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1000px;
}

	.large-card-display-area img {
		position: absolute;
		max-width: 180px;
		height: auto;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	}

.card-flipper {
	position: relative;
	width: 200px;
	height: 320px;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	cursor: pointer;
}

	.card-flipper:hover {
		transform: scale(1.05);
	}

	.card-flipper.is-flipped {
		transform: rotateY(180deg);
	}

.card-face {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.card-face img {
		position: static;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.card-back {
	transform: rotateY(180deg);
}

.card-meaning {
	max-width: 100%;
}

	.card-meaning p {
		font-size: 16px;
		line-height: 1.6;
		color: #333;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}

.outcome {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.outcome-head {
	font-weight: bold;
	font-size: 18px;
}

#mini-spread-container.deck {
	position: relative;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	padding: 10px;
	min-height: 150px;
	border-radius: 8px;
	box-sizing: border-box;
}

	#mini-spread-container.deck.layout-explore {
		border: none;
		background-color: transparent;
		padding: 0;
		height: auto;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

.card-scroller-viewport {
	width: 100%;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
}

.card-scroller-track {
	width: 100%;
	transition: transform 0.5s ease-in-out;
	padding: 0 15px;
	box-sizing: border-box;
}

.card-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 5px 0;
	box-sizing: border-box;
	transition: opacity 0.5s ease-in-out;
	opacity: 0.3;
	-webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

	.card-row.active-row {
		opacity: 1;
		-webkit-mask-image: none;
		mask-image: none;
	}

.card-layout-nav {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px;
	cursor: pointer;
	z-index: 10;
	color: #333;
	transition: background-color 0.2s ease, color 0.2s ease;
}

	.card-layout-nav:hover:not(:disabled) {
		background-color: #d9534f;
		color: #fff;
		border-color: #b94440;
	}

#card-nav-up {
	margin-bottom: 10px;
}

#card-nav-down {
	margin-top: 10px;
}

#mini-spread-container .cards {
	position: absolute;
	height: 70px;
	width: 45px;
	border: 1px solid #999;
	border-radius: 3px;
	box-shadow: 2px 2px 1px rgba(0,0,0,0.2);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#mini-spread-container.layout-explore .cards {
	position: relative;
	top: 0;
	left: 0;
	flex: 0 0 auto;
	width: auto;
	aspect-ratio: 45 / 70;
	margin: 0;
	border-radius: 4px;
	border: 2px solid transparent;
}


#mini-spread-container .cards:hover {
	transform: scale(1.1);
	z-index: 100 !important;
}

#mini-spread-container .cards.currpos {
	box-shadow: 0 0 10px 3px #d9534f;
	border: 2px solid #d9534f;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.large-card-container {
		max-width: 280px;
		padding: 10px;
	}

	.large-card-display-area {
		min-height: 260px;
	}

		.large-card-display-area img {
			max-width: 200px;
		}

	.card-flipper {
		width: 160px;
		height: 256px;
	}
}

.card-meaning .loader {
	text-align: center;
	padding: 20px;
	font-style: italic;
	color: #888;
	animation: pulse 1.5s infinite ease-in-out;
}

.outcome .revealing-text {
	text-align: center;
	padding: 20px;
	font-style: italic;
	color: #555;
	font-weight: bold;
}

@keyframes pulse {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

.reveal-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 1040;
	align-items: center;
	justify-content: center;
}

.reveal-message {
	font-size: 1.5em;
	font-weight: bold;
	color: #333;
	text-align: center;
	padding: 30px;
	animation: pulse 1.5s infinite ease-in-out;
}

.daily-reading-selector-container {
	margin-top: 15px;
	max-width: 300px;
}

	.daily-reading-selector-container label {
		font-weight: bold;
		margin-right: 10px;
		font-size: 14px;
	}

#daily-reading-selector {
	display: inline-block;
	width: auto;
	min-width: 150px;
	vertical-align: middle;
}

.reading-error-message {
	margin-top: 10px;
	font-size: 14px;
	color: #a94442;
}

#email-card-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	font-size: 16px;
	display: none; /* Initially hidden, controlled by JS */
	z-index: 20; /* Ensure it's above other elements */
}

/* HIDE BOOSTRAP LOGIN MODAL CLOSE BUTTONS SO THEY MUST LOGIN */
.modal-header .close {
	display: none;
}

.modal-footer .close {
	display: none;
}
/*
 * File: profile.css
 * Version: 11.0
 * Description: Added styles for the new individual .save-status indicators
 * and commented out obsolete styles for the old save button wrapper.
*/

/* Styles from portrait.css */
.btn-reading {
	width: 100px;
	margin-right: 20px;
}

.port-icon {
	height: 20px;
	width: 20px;
}

.portrait-loader {
	display: none;
	width: 40px;
	height: 40px;
}

.aspcheckbox label {
	margin-left: 10px;
	font-weight: normal;
}

/*#region IMAGE UPLOAD */
.dropzone {
	background-color: #eee;
	text-align: center;
	position: relative;
	border: 1px solid #ddd;
	display: none;
	width: 100px;
	height: 100px;
}

	.dropzone:after {
		content: '';
		font-size: x-small;
		color: #bbb;
		position: absolute;
		bottom: 60%;
		left: 0;
		width: 100%;
		text-align: center;
		z-index: 0
	}

	.dropzone:before {
		content: '';
		font-family: "Glyphicons Halflings";
		font-size: 60px;
		color: #dbdbdb;
		position: absolute;
		top: 40%;
		left: 0;
		width: 100%;
		text-align: center;
		z-index: 0
	}

	.dropzone > input[type=file] {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		opacity: 0;
		cursor: pointer;
		z-index: 2;
		height: 100%
	}

	/* --- ADD THE FOLLOWING RULES --- */

	.dropzone .cropWrapper {
		overflow: hidden;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 10;
		background-color: #eee;
	}

	.dropzone img {
		z-index: 5;
		position: relative;
	}

		.dropzone img.ghost {
			opacity: .2;
			z-index: auto;
			float: left;
		}

		.dropzone img.main {
			cursor: move;
		}

	/* This rule arranges the tool buttons and centers them */
	.dropzone .tools {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		display: flex;
		justify-content: center; /* This centers the group of buttons */
	}

		/* This rule styles the buttons to be compact */
		.dropzone .tools .btn {
			padding: 2px 3px;
			font-size: 12px;
			line-height: 1.5;
			/* The flex-grow property has been removed */
			border-radius: 0;
		}

		.dropzone .tools > * {
			margin: 0;
		}

/*#endregion */



/* Styles from account.css */
.gallery {
	background-color: #f5f5f5;
	padding: 2px;
	border: 1px solid #ddd;
	border-radius: 4px;
	height: 100%;
	margin-top: 30px;
}

.col-lg-6.gallery {
	max-width: none;
}

/*.tab-head {
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 15px;
	text-align: left;
}*/

.top-margin-10 {
	margin-top: 10px;
}

.top-margin-20 {
	margin-top: 20px;
}

.stats-container {
	display: flex;
	flex-direction: column;
}

.stats-item {
	display: flex;
	align-items: center;
	padding: 8px;
}

	.stats-item .port-icon {
		flex-shrink: 0;
		margin-right: 10px;
	}

/*
=================================================================================
CHANGE: Reduced the gap to tighten the vertical spacing between items.
=================================================================================
*/
.account-settings-container {
	display: flex;
	flex-direction: column;
	gap: 10px; /* Reduced from 15px */
	margin-left: 5px;
}

/*
=================================================================================
CHANGE: Changed align-items to 'center' to fix the vertical alignment of the labels.
=================================================================================
*/
.account-setting-item {
	display: flex;
	align-items: center; /* Changed from flex-start */
}

.account-setting-label {
	flex: 0 0 150px;
	font-weight: bold;
	margin: 0;
	padding-right: 15px;
	/* padding-top: 2px; <-- No longer needed */
}

/*
=================================================================================
CHANGE: This rule now creates the "roomy" layout.
- justify-content pushes the checkbox and status message to opposite ends.
=================================================================================
*/
.account-setting-control {
	flex-grow: 1;
	display: flex;
	align-items: center; /* Changed from flex-start */
	justify-content: space-between; /* Pushes items apart */
	gap: 15px;
}

	.account-setting-control .aspcheckbox {
		display: flex;
		align-items: flex-start;
	}

.portrait-header-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px;
}

.profile-info-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.profile-info-item {
	display: flex;
	align-items: center;
}

.profile-info-label {
	flex: 0 0 150px;
	font-weight: bold;
	margin: 0;
	padding-right: 15px;
}

.profile-info-value {
	flex-grow: 1;
	font-size: 16px;
}

#pnlContent .row > div:first-child {
	padding-right: 30px;
}

#pnlContent .row > div:last-child {
	padding-left: 30px;
}

.image-carousel-wrapper {
	margin-bottom: 10px;
	width: 172px;
	position: relative;
}

#image-carousel-container {
	width: 100px;
	margin: 0 auto;
}

.carousel-viewport {
	width: 100px;
	height: 100px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

#image-carousel-filmstrip {
	display: flex;
	position: absolute;
	left: 0;
	transition: left 0.5s ease-in-out;
}

.carousel-item {
	width: 100px;
	height: 100px;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid transparent;
	opacity: 0.5;
	transform: scale(0.9);
	transition: opacity 0.3s, transform 0.3s;
}

	.carousel-item.active {
		border-color: #e67e22;
		opacity: 1;
		transform: scale(1);
	}

.carousel-instructions {
	text-align: center;
	margin-top: 0;
	margin-bottom: 10px;
	width: 100%;
}

.profile-form-group {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	white-space: nowrap;
}

.profile-label {
	width: 100px;
	font-weight: normal;
	text-align: right;
	margin-right: 10px;
	flex-shrink: 0;
}

.profile-control {
	flex-grow: 1;
	max-width: 160px;
	height: 40px;
}

.profile-checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
	margin-bottom: 10px;
}

	.profile-checkbox-group label {
		margin-left: 5px;
		font-weight: normal;
	}

.save-status {
	margin-left: 10px;
	font-size: 12px;
	font-weight: bold;
	display: inline-block;
}

.image-carousel-wrapper .save-status {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.ui-accordion .ui-accordion-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ui-accordion .ui-accordion-content {
    padding: 10px !important;
}

.gallery-spell {
    background-color: whitesmoke;
    padding: 5px;
    margin-bottom: 10px;
    margin-left: 0;
    max-width: 550px;
}

.outcome-heads {
    font-size: larger;
    font-weight: bold;
}

.product-image {
    max-width: 90%;
}

.charcounter {
    font-size: 12px;
    color: gray;
    text-align: right;
}

textarea {
    overflow: hidden;
}

.reading-lead{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;

}


/*
 * File: site.css
 * Version: 2.1
 * Description: Main stylesheet for the TarotRoom application.
 * - Added a media query to reduce the padding on .content-box for mobile screens, giving components more horizontal space.
*/

/*
=================================================================================
 CHANGE 1 OF 2: NEW LAYOUT STYLES
 This entire block is new. It defines the look for the header line and the
 content box that you wanted.
=================================================================================
*/
/*.page-header-container {
	border-bottom: 2px solid #d9534f;*/ /* Red color, matches .btn-danger */
/* This padding aligns the line with Bootstrap's container padding */
/*padding: 0 15px;
	margin: 0 20px 20px 20px;
}*/

.content-box {
	/*	background-color: #ffffff;*/
	padding: 0px 30px;
	/*margin: 20px 0px;*/
	/*border: 1px solid #e7e7e7;*/
	/*border-radius: 4px;*/
	/*box-shadow: 0 1px 4px rgba(0,0,0,0.04);*/
}
/*
=================================================================================
 END NEW LAYOUT STYLES
=================================================================================
*/

body {
	font-family: 'Raleway', sans-serif !important;
	/*min-height: 100%;*/
	/*background: url(/Content/Images/Backgrounds/ssbackground.png) center center no-repeat fixed !important;*/
	/*-webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;*/
	/* START MODIFICATION: Add overflow-x to prevent horizontal scrolling */
	overflow-x: hidden;
	/* END MODIFICATION */
}

html {
	height: 100% !important;
	min-height: 100% !important;
}

/*#region NEW RESPONSIVE SIDE NAVIGATION */
/* Main content area styling */
/*
=================================================================================
 CHANGE 2 OF 2: MAIN CONTENT PADDING
 The 'padding' property on this existing class has been changed from '20px'
 to '20px 0' to fix the "squished" layout issue.
=================================================================================
*/
.main-content {
	margin-left: 220px;
	transition: margin-left 0.3s ease;
	/* START MODIFICATION: Re-added side padding for better spacing */
	padding: 20px;
	/* END MODIFICATION */
}

/* Mobile Header */
.mobile-header {
	display: none; /* Hidden by default */
	background-color: none;
	padding: 10px 15px;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.hamburger-menu {
	background: none;
	border: #f8f9fa;
	padding: 0;
	cursor: pointer;
}

	.hamburger-menu .hamburger-bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: #333;
		margin: 5px 0;
		/*transition: all .3s;*/
	}

/* Base styles for the side navigation */
.side-nav {
	/*white-space: nowrap;
	overflow-x: auto;*/
	height: 100%;
	width: 220px; /* Width of the expanded menu */
	position: fixed;
	z-index: 1001;
	top: 0;
	left: 0;
	background-color: #f8f9fa;
	border-right: 1px solid #e7e7e7;
	padding-top: 15px;
	display: flex;
	flex-direction: column;
	transition: left 0.3s ease;
}

.side-nav-logo {
	display: block;
	margin: 0 auto 20px auto;
	max-width: 80%;
}

.side-nav .nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-grow: 1;
	overflow-y: auto; /* Allows this specific section to scroll */
}

	.side-nav .nav-links a {
		display: flex;
		align-items: center;
		padding: 15px 10px; /* shave off a couple pixels here and there */
		text-decoration: none;
		font-size: 16px;
		color: #333;
		font-weight: 500;
	}

		.side-nav .nav-links a:hover {
			background-color: #e9ecef;
		}

		.side-nav .nav-links a i {
			font-size: 20px;
			width: 30px; /* Fixed width for icon alignment */
			margin-right: 15px;
			text-align: center;
		}

.side-nav .nav-footer {
	padding: 15px;
	font-size: 12px;
	color: #6c757d;
	text-align: center;
}

	.side-nav .nav-footer a {
		color: #6c757d;
	}

/* =================================== */
/* 1. DEFAULT USER IMAGE DESKTOP & BASE STYLES    */
/* =================================== */
/* Profile image styling in side nav */
.profile-container {
	padding: 20px;
	text-align: center;
	/*cursor: pointer;*/ /* This adds the hand pointer on hover */
	transition: transform 0.1s ease; /* This makes the push effect smooth */
}

	.profile-container:active {
		transform: scale(0.97);
	}


/* Base styles for the ROUND USER IMAGE */
.img-circle-responsive {
	/* --- Responsiveness --- */
	max-width: 100%;
	height: auto;
	/* --- Circular Shape --- */
	border-radius: 50%;
	/* --- Optional: For non-square images --- */
	object-fit: cover; /* Prevents the image from looking squished */
	aspect-ratio: 1 / 1; /* Ensures the element itself is a square */
	margin-bottom: 8px; /* Added space below the image */
}

/* =================================== */
/* 2. LARGE DESKTOP OVERRIDE           */
/* =================================== */

/* Make the image bigger ONLY on wide screens */
@media (min-width: 1200px) {
	.img-circle-responsive {
		width: 90px;
		height: 90px;
	}
}

/* =================================== */
/* 3. YOUR EXISTING TABLET & MOBILE    */
/* =================================== */

/* TABLET VIEW (e.g., between 768px and 1024px) */
/*ORIGINAL SIZE SET BY TESS*/
/*@media (max-width: 1024px) {*/
/*NEW SIZE FOR CIRCULAR USER IMAGE*/
/*@media (max-width: 1199px) {*/
/* START MODIFICATION: Adjusted max-width to align with min-width: 1200px rule */
@media (max-width: 1200px) {
	/* END MODIFICATION */
	.side-nav {
		width: 70px; /* Collapsed width */
		display: flex; /* become a flex container */
		flex-direction: column;
		align-items: center;
		overflow: hidden; /* hide anything that bleeds out */
		white-space: nowrap; /* prevent wrapping of children */
	}

		.side-nav .side-nav-logo {
			display: none; /*Hide logo in collapsed view */
		}

		/*.side-nav .nav-links a span,
		.side-nav .nav-footer {
			margin-top: auto;
			display: none;*/ /* Hide text and footer */
		/*}*/

		.side-nav .side-nav-logo,
		.side-nav .nav-links a span {
			display: none;
		}

		.side-nav .nav-links a {
			justify-content: center;
			padding: 15px 10px;
		}

			.side-nav .nav-links a i {
				margin-right: 0;
			}

	/* Adjust main content for collapsed menu */
	.main-content {
		margin-left: 70px;
	}

	/* HIDE the name/welcome text using the correct ID */
	#lblLoginName {
		display: none;
		padding: 8px
	}

	/* Make the login/logout button smaller */
	#lbSignInOut {
		/*font-size: 10px;
		padding: 5px 5px;*/
		/*display: block;*/
		margin-top: 5px;
		display: block;
		font-size: 11px;
		padding: 6px 6px;
		max-width: 100%;
		box-sizing: border-box;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
}

/* =================================================================== */
/* START CHANGE: Added media query to reduce content box padding on mobile. */
/* =================================================================== */
@media (max-width: 767px) {
	.content-box {
		padding: 0px 2px; /* Reduce side padding on mobile */
	}
}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */


/* MOBILE VIEW (e.g., less than 768px) */
@media (max-width: 767px) {
	/* Show the mobile header */
	.mobile-header {
		display: flex;
	}

	/* Shift main content down to not be covered by the fixed header */
	body {
		padding-top: 55px;
	}

	/* Main content takes full width */
	.main-content {
		margin-left: 0;
	}

	/* Hide the side-nav by default by moving it off-screen */
	.side-nav {
		left: -220px; /* Same as the width */
		width: 220px; /* <<< ADD THIS LINE BACK */
	}

	/* ... rest of your mobile styles ... */
}


/* The 'active' class will slide the menu in */
.side-nav.is-active {
	left: 0;
}
	/* When menu is active, show the text again */
	.side-nav.is-active .side-nav-logo,
	.side-nav.is-active .nav-links a span,
	.side-nav.is-active .nav-footer {
		display: block;
	}

	.side-nav.is-active .nav-links a {
		justify-content: flex-start;
	}

		.side-nav.is-active .nav-links a li {
			margin-right: 15px;
		}

/* Fix for Bootstrap JS conflict */
.navbar-collapse.collapse {
	display: none !important;
}

.profile-name {
	color: #333;
	font-weight: 600;
	display: block; /* CHANGE: Ensures the label is on its own line */
	margin-bottom: 5px; /* Add space below the name, before the button */
}

/* Hide profile text when nav is collapsed on tablets */
/* START MODIFICATION: Adjusted max-width to align with other side-nav rule */
@media (max-width: 1200px) {
	/* END MODIFICATION */
	.side-nav .profile-container {
		padding: 10px; /* Smaller padding for collapsed view */
	}

	.side-nav #lblLoginName {
		display: none;
	}
}

/* Show profile text when nav is active on mobile */
@media (max-width: 767px) {
	.side-nav.is-active #lblLoginName {
		display: block; /* Show name when menu slides in */
	}
}
/*
=================================================================================
 FIX FOR MOBILE PADDING: Reduces the padding on the main content area for
 screens smaller than 768px to give components more horizontal space.
=================================================================================
*/
@media (max-width: 767px) {
	.main-content {
		padding: 20px 2px; /* Keeps vertical padding, drastically reduces side padding */
	}
}

/*#endregion */

/*#region TAROTROOM NAVIGATION CONTROL */

/*
=================================================================================
 STYLES FOR TAROT ROOM NAVIGATION CONTROL (REVISED AND SIMPLIFIED)
=================================================================================
*/

/**
 * MODIFICATION: The main container is now a Flexbox container.
 * - 'display: flex' activates flexbox.
 * - 'justify-content: center' permanently centers the content horizontally.
 * - 'align-items: center' vertically aligns everything in the middle.
 * All rules related to the back button, spacers, and conditional centering
 * have been removed.
 */
.tarot-room-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* This media query applies the max-width ONLY on screens 768px or wider (tablets and desktops) */
@media (min-width: 768px) {
	.tarot-room-container {
		max-width: 600px; /* Adjust this value to make it tighter or looser */
		margin: 0 auto; /* This re-centers the newly constrained container */
	}
}

/**
 * MODIFICATION: This is the container for the centered image and button.
 * - Flexbox handles the centering automatically.
 */
.centered-nav-items {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/**
 * Styles for the small image/logo above the button.
 */
.tr-nav-logo {
	max-width: 45px;
	margin-bottom: 2px;
}

/**
 * Wrapper for the 'Start Reading' button and its popup menu.
 * This sets a positioning context for the popup menu.
 */
.tr-nav-button-wrapper {
	position: relative;
}

/**
 * Specific sizing styles for the 'Start Reading' button.
 */
.tr-nav-start-button {
	padding: 8px 16px;
	font-size: 1.1em;
	line-height: 1.5;
}

.layout-picker-container {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%; /* Center relative to the parent button wrapper */
	transform: translateX(-50%); /* The classic centering transform */
	margin-top: 8px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 8px;
	color: #333333;
	width: 220px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	z-index: 1050; /* Ensures it appears above other content */
}

.layout-options {
	list-style: none;
	padding: 6px;
	margin: 0;
}

	.layout-options li {
		border-top: 1px solid #eeeeee;
	}

		.layout-options li:first-child {
			border-top: none;
		}

		.layout-options li a {
			display: flex;
			align-items: center;
			padding: 10px;
			color: #333333;
			text-decoration: none;
			border-radius: 4px;
			transition: background-color 0.2s;
			font-size: 15px;
			font-weight: 500;
		}

			.layout-options li a:hover {
				background-color: #f5f5f5;
			}

.layout-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}

/*#endregion */

/*#region INSIGHT FEED */

.insight-feed {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px;
}

.insight-item {
	display: flex; /* Aligns avatar and content side-by-side */
	border-bottom: 1px solid #eee;
	padding: 15px 5px;
}

	.insight-item:last-child {
		border-bottom: none;
	}

.insight-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 4px;
	margin-right: 15px;
}

.insight-content {
	flex-grow: 1; /* Allows content to take up remaining space */
}

	.insight-content p {
		margin: 0 0 5px 0;
		font-size: 14px;
	}

.insight-header .text-muted {
	font-size: 12px;
	margin-left: 8px;
}

.insight-message {
	color: #555;
}

.insight-actions img {
	height: 16px;
	width: 16px;
	margin-right: 10px;
	opacity: 0.7;
}

.insight-actions a:hover img {
	opacity: 1;
}
/*#endregion */

/*#region HEADER TYPOGRAPHY */
.tab-head {
	font-size: 21px;
	font-weight: 600;
	text-align: left;
	color: #555;
	background-color: transparent !important;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 5px;
	/*border: none !important;*/
	/* CHANGE THE COLOR CODE ON THIS LINE */
	border-bottom: 2px solid #d9534f !important; /* Matches .btn-danger color */
}

h1 {
	font-size: 22px !important;
}

h2 {
	font-size: 20px !important;
}

.h2-tab-head {
	font-size: 20px !important;
	margin-top: 0 !important;
}

h3 {
	font-size: 18px !important;
}

h4 {
	font-size: 16px !important;
}

h5 {
	font-size: 14px !important;
}
/*#endregion */

/*#region LAYOUT/TABLES */

.table-cell-centered {
	text-align: center;
	vertical-align: middle;
}


.table-center {
	text-align: center;
}

.bottom0 {
	margin-bottom: 0;
}

.bottom5 {
	margin-bottom: 5px;
}

.bottom10 {
	margin-bottom: 10px;
}

.bottom20 {
	margin-bottom: 20px;
}

.top5 {
	margin-top: 5px;
}

.top10 {
	margin-top: 10px;
}

.top-bottom5 {
	margin: 5px;
}

.top-bottom10 {
	margin: 10px;
}

.table-top5 {
	margin-top: 5px;
}

.table-top10 {
	margin-top: 10px;
}

.table-top20 {
	margin-top: 20px;
}

.table-bottom10 {
	margin-bottom: 5px;
}

.table-bottom5 {
	margin-bottom: 10px;
}

.table-bottom20 {
	margin-bottom: 20px;
}

.td-top5 {
	padding-top: 5px;
}

.td-top10 {
	padding-top: 10px;
}

.td-right5 {
	padding-right: 5px;
}

.td-right10 {
	padding-right: 10px;
}

.td-right20 {
	padding-right: 20px;
}

.td-middle {
	vertical-align: middle;
}

.hr10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.lead-fix {
	margin-bottom: 10px;
}

.lead-fix0 {
	margin-top: 10px;
	margin-bottom: 0;
}

/*#endregion */

/*#region ADS/RESPONSIVE ADS */
.responsive_ad {
	width: 80%;
}

@media (max-width: 576px) {
	.right-ad {
		display: none !important;
	}
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
	/*.responsive_ad {
        width: 80%;
        height: 100%;
    }*/
	/*.right-ad{
        display: none;
    }*/
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 767px) {
	.responsive_ad {
		width: 100%;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

.top-ad {
	margin: 5px 0 10px 0;
}

.right-ad {
	width: 160px;
	height: 600px;
}

.bottom-ad {
	width: 300px !important;
	height: 250px !important;
}

.top-ad-dev {
	margin: 5px 0 10px 0;
	border: 2px solid black;
}

.right-ad-dev {
	width: 160px !important;
	height: 600px !important;
	border: 2px solid black;
}

.bottom-ad-dev {
	width: 300px !important;
	height: 250px !important;
	border: 2px solid black;
}
/*#endregion */

/*#region NAVBARS */
.navbar {
	border-radius: 0 !important;
}

.navbar-link {
	margin: 5px 10px 0 10px !important;
}

	.navbar-link a {
		color: white !important;
		font-size: 14px !important;
	}

.navbar {
	min-height: 25px !important;
}

.navbar-default {
	border: none !important;
}

.navbar-logo {
	background-color: #3f3f3f !important;
	margin: 0 !important;
}

.navbar-cell {
	padding: 5px !important;
	white-space: nowrap !important;
}

.navbar-menu {
	margin-bottom: 0 !important;
}

.navbar-menu-items {
	margin-left: 25px !important;
	padding-left: 10px !important;
}

/*.navbar-toggle {
    margin-left: 35px !important;
}*/
/*#endregion */

/*#region CHARMS */
/* --- ADDED COMMENT ---
    NOTE: The Charms control is now positioned using these 'slideout' classes.
    In Default.Master.txt, the <charm:Charms> control was moved outside of the Bootstrap grid.
    This allows the 'position: fixed' property to work correctly, fixing the control to the
    viewport (the browser window) so it can act as a persistent flyout menu on the right
    side of the page, regardless of scrolling.
*/
.slideout {
	position: fixed;
	right: 0;
	background: #dcdcdc;
	width: 40px;
	height: 40px;
	padding: 2px;
	text-align: center;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	transition-duration: .5s;
	-o-transition-duration: .5s;
	-webkit-border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	border-radius: 0 5px 5px 0;
}

.slideout-inner {
	position: fixed;
	right: -290px;
	width: 290px;
	background: #dcdcdc;
	padding: 5px 0 10px 35px;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	transition-duration: .5s;
	-o-transition-duration: .5s;
	text-align: left;
	-webkit-border-radius: 0 0 5px;
	-moz-border-radius: 0 0 5px;
	border-radius: 2px 2px 5px 0;
}

.slideout-user {
	top: 30px;
	z-index: 200;
}

.slideout-insight {
	top: 65px;
	z-index: 300;
}

.slideout-reading {
	top: 100px;
	z-index: 400;
}

.slideout-inner-user {
	top: 30px;
	height: 260px;
}

.slideout-inner-insight {
	top: 65px;
	height: 235px;
}

.slideout-inner-reading {
	top: 110px;
	height: 260px;
}

.slideout:hover {
	right: 290px;
}

	.slideout:hover .slideout-inner {
		right: 0;
	}

.slideout:focus {
	right: 290px;
}

	.slideout:focus .slideout-inner {
		right: 0;
	}
/*#endregion */

/*#region MENUS */
.dropdown-menu li, .dropdown-toggle {
	font-size: 16px !important;
	text-transform: uppercase !important;
}

.dropdown-menu .divider {
	background-color: #a9a9a9 !important;
}
/*#endregion */

/*#region HEADERS/FOOTERS */
.bottom-footer {
	margin-bottom: 4rem;
}

/*#endregion */

/*#region MODALS */

.modal-signin.no-close-buttons .close,
.modal-signin.no-close-buttons #signinFooterClose {
	display: none !important;
}

.vertical-alignment-helper {
	display: table;
	height: 100%;
	width: 100%;
}

.vertical-align-center {
	display: table-cell;
	vertical-align: middle;
}

.modal-content {
	width: 350px;
	height: inherit;
	margin: 0 auto;
}

.modal-backdrop {
	z-index: 500;
}

.modal-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.grid-item {
	padding-bottom: 16px;
	text-align: center;
}

.grid-item-image {
	margin: 0 auto;
}

.grid-item-image-wrap {
	padding-bottom: 8px;
}
/*#endregion */

/*#region SPELL/DECK RECOMMENDATION */
blockquote {
	padding: 10px 20px !important;
	margin: 0 !important;
	font-size: 14px !important;
	border-left: 10px solid #a9a9a9 !important;
}

.gallery {
	background-color: #f5f5f5;
	padding: 10px;
	margin-top: 10px;
	/*max-width: 750px;*/
}
/*#endregion */

/*#region READING */
.deck {
	margin-left: 20px;
	margin-top: 0;
	position: relative;
}

.msg {
	margin-top: 10px;
	margin-bottom: 10px;
}

.bigcards, .cards {
	position: absolute;
	border: 2px solid #dcdcdc;
	border-radius: 6px;
}

.currpos {
	border: 4px solid red;
}

.pos-name {
	font-weight: 700;
}

.start-reading {
	padding: 8px 12px; /* Adjusts the button's padding */
	font-size: 12px; /* Makes the font smaller */
	margin: 5px 0; /* Adds space around the button */
	border-radius: 4px; /* Rounds the corners slightly */
	display: inline-block;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.0;
}

.start-other-reading {
	margin: 10px 0 10px 0 !important;
}

.start-explore-reading {
	margin: 10px 0 10px 0 !important;
}

.rating-verybad {
	color: #f8696b !important;
	font-weight: 700;
}

.rating-bad {
	color: #fa9d75;
	font-weight: 700;
}

.rating-fair {
	color: #ffa500;
	font-weight: 700;
}

.rating-average {
	color: #19936f;
	font-weight: 700;
}

.rating-good {
	color: #008860;
	font-weight: 700;
}

.rating-great {
	color: #005f43;
	font-weight: 700;
}
/*#endregion */

/*#region BUTTONS */
.button {
	display: inline-block;
	margin: 2px;
	font-weight: 300;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	background-color: #f0f0f0;
	border: 1px solid transparent;
	white-space: nowrap;
	padding: 6px 6px;
	font-size: 14px;
	line-height: 1.428571429;
	border-radius: 3px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	/*-o-user-select: none;*/
	user-select: none;
}

	.button:focus {
		outline: dotted thin;
		outline: -webkit-focus-ring-color 5px;
		outline-offset: -2px;
	}

	.button:focus, .button:hover {
		color: #333;
		text-decoration: none;
	}

	.button.active, .button:active {
		outline: 0;
		background-image: none;
		-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
		box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	}

	.button.disabled, .button[disabled], fieldset[disabled] .button {
		cursor: not-allowed;
		pointer-events: none;
		opacity: .65;
		/*filter: alpha(opacity=65);*/
		-webkit-box-shadow: none;
		box-shadow: none;
	}

.shopify-button {
	margin-bottom: 10px;
}

.btn-signinout {
	cursor: pointer;
	padding-left: 5px !important; /* instead of, say, 12px */
	padding-right: 5px !important;
}

	.btn-signinout:hover {
		background-color: #a94442 !important;
	}

.btn-nav-reading {
	width: 75px;
	height: 30px;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-top: 0;
	margin-bottom: 5px;
}

.btn-nav {
	/*width: 75px;
    height: 40px;*/
	/*padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 10px;*/
}


.btn-email-reading {
	/*width: 75px;
    height: 40px;*/
	/*margin-top: 10px !important;
    margin-bottom: 10px !important;*/
}

.btn-nav-email {
	width: 150px;
	height: 40px;
	margin: 5px;
}

.btn-prod-add, .btn-trend-add {
	float: left;
	margin-right: 10px;
}

/*.btn-prod-add-stat {
	float: left;
	margin-top: 5px;*/
/*btn btn-lg btn-danger start-reading*/
/*}*/

/*.btn-prod-add-img {
	min-width: 175px;*/
/*btn btn-lg btn-danger start-reading*/
/*}*/

.quantity-select {
	max-width: 95px;
}
/*#endregion */

/*#region PORTRAIT */
.portrait-table {
	text-align: center;
}

	.portrait-table th {
		background-color: #dcdcdc;
		text-align: center;
	}

	.portrait-table td {
		padding-top: 4px;
	}
/*#endregion */

/*#region INFOHUB */
/* Styling for the help page links */
.Infolinks {
	list-style-type: none; /* Removes the default bullet points */
	padding: 0; /* Removes default list padding */
	margin-top: 25px; /* Adds space below the introductory paragraph */
}

	.Infolinks li {
		margin-bottom: 12px; /* Adds vertical space between each link */
	}

		.Infolinks li a {
			display: flex; /* Aligns icon and text horizontally */
			align-items: center; /* Centers icon and text vertically */
			padding: 10px;
			border-radius: 5px; /* Gives the links slightly rounded corners */
			font-size: 16px; /* Increases font size for readability */
			color: #337ab7; /* A standard link blue color */
			text-decoration: none;
			transition: background-color 0.2s ease-in-out; /* Smooth hover effect */
		}

			.Infolinks li a:hover {
				background-color: #f5f5f5; /* Adds a light grey background on hover */
				text-decoration: none;
				color: #23527c;
			}

			.Infolinks li a i {
				margin-right: 15px; /* Adds space between the icon and the text */
				width: 25px; /* Ensures all text is aligned, regardless of icon width */
				text-align: center;
				font-size: 18px; /* Makes icons slightly larger than the text */
			}
/* Styling for the "Back to Info Hub" link on help pages */
.back-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	color: #555;
	margin-bottom: 25px; /* Adds space between the link and the page title */
	transition: color 0.2s ease;
}

	.back-link:hover {
		color: #000;
		text-decoration: none;
	}

	.back-link i {
		margin-right: 8px; /* Adds space between the arrow and the text */
	}

.content-spacing-top {
	margin-top: 30px; /* You can adjust this value */
}
/*#endregion */

/*#region INSIGHTS */
.dropdown-hide {
	border: none;
	padding: 5px !important;
	margin: 0;
	min-width: 125px !important;
}

.insight-btn {
	font-size: 14px;
}

.list-group {
	margin-bottom: 0 !important;
}

.insights-hide {
	margin-bottom: 10px;
}

.insight-save-sel {
	font-size: 14px;
}

.btn-ins {
	height: 37px;
	width: 37px;
	margin: 5px;
}

.btn-ins-trash {
	padding-top: 2px !important;
	height: 30px;
	width: 42px;
	margin: 5px;
	padding: 0;
}

.btn-ins-hide {
	padding: 5px !important;
	width: 125px !important;
}

.ins-drop-down {
	top: 75% !important;
}

.min-textarea-ins-comments {
	min-height: 35px !important;
}
/*#endregion */

/*#region INSIGHT TICKER */
.ins-rotator {
	min-width: 250px !important;
	margin-bottom: 10px !important;
}

.rrItem .itemWrapper {
	position: relative !important;
	margin-right: 2px !important;
	cursor: pointer !important;
}

.rrItem .usertickimg {
	height: 75px !important;
	width: 75px !important;
}

.rrItem .commenttitle {
	position: absolute !important;
	height: 75px !important;
	background-color: #f5f5f5 !important;
	color: dimgray;
	font-size: x-small !important;
	width: 100px !important;
	padding-left: 5px !important;
	padding-right: 5px !important;
}

.rrItem .nametitle {
	position: absolute !important;
	color: maroon !important;
	background-color: rgba(169,169,169,.55) !important;
	width: 75px !important;
}

.rrItem .instypeimg {
	position: absolute !important;
	top: 55px !important;
	left: 55px !important;
}

/*#endregion */

/*#region PANELS */
.panel {
	/*margin: 10px !important;*/
}

.panel-body, .panel-heading {
	padding: 5px !important
}

.panel-reading {
	margin: 0 20px 10px 0 !important;
	/* START MODIFICATION: Changed min-width to a more flexible max-width to allow for responsiveness */
	max-width: 350px !important;
	/* END MODIFICATION */
}

.panellayout {
	width: 100px !important;
	/*margin: 10px 0 0 30px !important*/
}

.panel-finalcards, .panelmain {
	max-width: 175px !important;
	min-width: 125px !important;
	margin-left: 0 !important;
}

.panel-birthcard {
	margin-top: 0 !important;
	margin-left: 0 !important;
	max-width: 185px !important;
	min-width: 150px !important;
}
/*#endregion */

/*#region CAROUSEL */
.carousel.carousel-fade .item {
	-webkit-transition: opacity .35s ease-in-out;
	-moz-transition: opacity .35s ease-in-out;
	/*-ms-transition: opacity .35s ease-in-out;*/
	-o-transition: opacity .35s ease-in-out;
	transition: opacity .35s ease-in-out;
	opacity: .1;
}

.carousel.carousel-fade .active.item {
	opacity: 1;
}
/*#endregion */

/*#region TABSTRIPS */
.RadTabStrip, .RadTabStripVertical {
	margin-bottom: 10px !important;
}

	.RadTabStripVertical .rtsLink {
		text-align: center !important;
	}

.RadTabStrip_Simple .rtsLink:hover {
	background-color: #a9a9a9 !important;
}

.RadTabStrip_Silk .rtsNextArrow, .RadTabStrip_Silk .rtsPrevArrow {
	background-image: url(/Content/Images/Nav/biggernav.png) !important;
	opacity: 1 !important;
}

.RadTabStrip_Silk .rtsNextArrowDisabled, .RadTabStrip_Silk .rtsNextArrowDisabled:hover, .RadTabStrip_Silk .rtsPrevArrowDisabled, .RadTabStrip_Silk .rtsPrevArrowDisabled:hover {
	background-image: url(/Content/Images/Nav/biggernav.png) !important;
	opacity: .3 !important;
}

	.RadTabStrip_Silk .rtsPrevArrow, .RadTabStrip_Silk .rtsPrevArrowDisabled, .RadTabStrip_Silk .rtsPrevArrowDisabled:hover {
		background-position: -25px -115px !important;
	}

	.RadTabStrip_Silk .rtsNextArrow, .RadTabStrip_Silk .rtsNextArrowDisabled, .RadTabStrip_Silk .rtsNextArrowDisabled:hover {
		background-position: -25px -188px !important;
	}
/*#endregion */

/*#region NOTIFICATIIONS/MESSAGES */
.pulseme {
	-webkit-animation: color_change 1s infinite alternate;
	-moz-animation: color_change 1s infinite alternate;
	/*-ms-animation: color_change 1s infinite alternate;*/
	-o-animation: color_change 1s infinite alternate;
	animation: color_change 1s infinite alternate;
}

.pulseme5 {
	-webkit-animation: color_change 1s 5 alternate;
	-moz-animation: color_change 1s 5 alternate;
	/*-ms-animation: color_change 1s 5 alternate;*/
	-o-animation: color_change 1s 5 alternate;
	animation: color_change 1s 5 alternate;
}

.errorme {
	color: red;
}

.hideme {
	-webkit-animation: color_change 1s 4 alternate,hide-me 1s 1;
	-moz-animation: color_change 1s 4 alternate,hide-me 1s 1;
	/*-ms-animation: color_change 1s 4 alternate,hide-me 1s 1;*/
	-o-animation: color_change 1s 4 alternate,hide-me 1s 1;
	animation: color_change 1s 4 alternate,hide-me 1s 1;
	-webkit-animation-delay: 0s,6s;
	-moz-animation-delay: 0s,6s;
	/*-ms-animation-delay: 0s,6s;*/
	-o-animation-delay: 0s,6s;
	animation-delay: 0s,6s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	/*-ms-animation-fill-mode: forwards;*/
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes color_change {
	from {
		color: maroon;
	}

	to {
		color: gold;
	}
}

@-moz-keyframes color_change {
	from {
		color: maroon;
	}

	to {
		color: gold;
	}
}

@-o-keyframes color_change {
	from {
		color: maroon;
	}

	to {
		color: gold;
	}
}

@keyframes color_change {
	from {
		color: maroon;
	}

	to {
		color: gold;
	}
}

@keyframes hide-me {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@-webkit-keyframes hide-me {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}
/*#endregion */

/*=====================================================================
  Styles for the Tarot Flow Card Component
  Version: 7.8
  Description: Re-added a max-width to the birthday card image wrapper 
  to prevent it from becoming oversized on large screens, while keeping 
  the 50/50 flexbox split for small screen responsiveness.
=====================================================================*/

/* HIDE BOOSTRAP LOGIN MODAL CLOSE BUTTONS SO THEY MUST LOGIN */
/* This is a corrected CSS rule to hide the close button, which might be in a global stylesheet.
   Since the user wants to show the close button here, we will explicitly set it back to display: block. */
.modal-header .close {
	display: block !important;
}

.modal-footer .close {
	font-size: medium;
	padding-top: 7px;
	padding-left: 7px;
	display: block !important;
}

.tarotflow-container {
	margin: 20px 0px;
	/*padding: 20px 0px;*/
}
/* Styling for prominent, minimally-indicated tabs */
/* Styling for prominent, full-width tabs */
.nav-prominent-tabs {
	display: flex; /* This is the key to activating flexbox */
	width: 100%; /* Ensure the container takes full width */
	border-bottom: none !important; /* Add !important to override Bootstrap */
}
	/* This new rule tells each tab to grow equally */
	.nav-prominent-tabs > li {
		flex-grow: 1; /* Each tab will expand to fill available space */
		margin-bottom: -2px;
	}

		.nav-prominent-tabs > li > a {
			border: none !important;
			border-radius: 0 !important;
			font-size: 21px;
			font-weight: 400;
			color: #555;
			background-color: transparent !important;
			padding: 0px 0px !important;
			text-align: left;
		}

			/* Style for the hovered, non-active tab */
			.nav-prominent-tabs > li > a:hover {
				color: #000;
			}

		/* Style for the active tab with the minimal underline indicator */
		.nav-prominent-tabs > li.active > a,
		.nav-prominent-tabs > li.active > a:hover,
		.nav-prominent-tabs > li.active > a:focus {
			border: none !important;
			color: #333;
			font-weight: 600;
			/* CHANGE THE COLOR CODE ON THIS LINE */
			border-bottom: 3px solid #d9534f !important; /* Matches .btn-danger color */
		}
/* START MODIFICATION: Version 2.1 had a mix of old/new rules. Consolidating into this section */

/* New flexbox layout for the card header */
.flow-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 5px;
	gap: 10px;
}

/* Container for the user profile and its associated info */
.flow-header-content {
	display: flex;
	flex-direction: column;
}

/* =================================================================== */
/* START CHANGE: New styles for the Reading Rating section layout. */
/* =================================================================== */
/* Container for the rating and icon */
.flow-header-rating {
	text-align: right;
	flex-shrink: 0; /* Prevents the rating section from shrinking */
}

.rating-content {
	display: flex;
	align-items: center; /* Vertically align text block with icon */
	gap: 5px;
}

/* =================================================================== */
/* START CHANGE: Added line-height to reduce vertical spacing. */
/* =================================================================== */
.rating-text {
	display: flex;
	flex-direction: column;
	align-items: flex-end; /* Aligns "Good Reading" and date to the right */
	padding-right: 8px; /* Adds a small space so text isn't touching the icon */
	line-height: 1.1; /* Reduces space between stacked text lines */
}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */

.rating-icon {
	width: 35px; /* Made icon slightly smaller as requested */
}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */


/* Mobile-specific styles for the header */
@media (max-width: 600px) {
	/* =================================================================== */
	/* START CHANGE: Aggressively reduce sizes and spacing on mobile. */
	/* =================================================================== */
	.flow-card-header {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 4px;
	}

	.flow-header-content {
		align-items: flex-start;
		text-align: left;
	}

	.flow-profile-pic {
		width: 40px; /* Final reduction */
		height: 40px;
	}

	.flow-user-name {
		font-size: 11px; /* Reduce font size */
		margin-top: 4px;
	}

	/* =================================================================== */
	/* START MODIFICATION: Update mobile icon alignment                    */
	/* =================================================================== */
	.user-icons-col {
		height: 40px; /* Match mobile profile pic height */
		justify-content: space-between; /* Distribute icons */
		padding-top: 0; /* Remove padding */
		gap: 0; /* Remove gap */
	}
	/* =================================================================== */
	/* END MODIFICATION                                                    */
	/* =
	.btn-owner-guide-make .img-adore, .btn-chart img {
		width: 16px; /* Final reduction */
		height: 16px;
	}

	.instypeimg {
		width: 22px; /* Final reduction */
		height: 22px;
	}

	.rating-text {
		padding-right: 4px;
		line-height: 1.1; /* Tighten up rating text */
	}

	.flow-rating-word {
		white-space: normal; /* Allow rating text to wrap */
		font-size: 11px; /* Reduce rating font size */
	}

	.flow-reading-date {
		font-size: 11px; /* Reduce rating font size */
	}

	/* =================================================================== */
	/* END CHANGE */
	/* =================================================================== */

	.user-profile-info-col {
		align-items: center !important;
		text-align: center;
	}

	.info-col-bottom-row {
		position: static !important;
	}

	/* =================================================================== */
	/* START CHANGE: Override for the rating section on mobile. */
	/* =================================================================== */
	.flow-header-rating {
		margin-top: 0;
		width: auto;
		display: flex;
		justify-content: flex-end;
	}
	/* =================================================================== */
	/* END CHANGE */
	/* =================================================================== */

	.rating-content {
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
	}

	.rating-text {
		align-items: flex-end;
	}
}
/* END MODIFICATION */

/* --- General Card & Link Setup --- */
.flow-card {
	transition: background-color 0.3s ease;
}

	.flow-card a {
		text-decoration: none !important;
		color: inherit;
	}

/* --- Card Header --- */
/* This was removed and replaced with the new flexbox structure above */

.flow-profile-pic {
	width: 70px;
	height: 70px;
	border-radius: 0;
	margin-bottom: 0;
}

.flow-sign-pic {
	width: 35px;
	height: 35px;
	border-radius: 5px;
	margin-bottom: 5px;
}

.flow-user-name {
	font-weight: bold;
	font-size: 14px;
	white-space: nowrap;
}

.flow-user-info {
	font-weight: 100;
	font-size: 14px;
	white-space: wrap;
}

/* --- Rating Area --- */
.instypeimg {
	width: 35px; /* Made icon slightly smaller */
	height: 35px;
	vertical-align: middle;
	margin-right: 2px;
	padding-top: 0; /* Removed top padding */
}

.flow-rating-word {
	font-weight: bold;
	font-size: 14px;
	vertical-align: middle;
}

.flow-portrait-word {
	font-weight: bold;
	font-size: 16px;
	color: crimson;
	vertical-align: middle;
}

.flow-reading-date .flow-portait-sign {
	color: #888;
	font-size: 14px;
	vertical-align: middle;
}

/* --- Main Outcome Content --- */
.outcome-link-wrapper p {
	font-size: 12px;
}

/* =================================================================== */
/* START CHANGE: Changed justify-content to center the cards. */
/* =================================================================== */
.outcome-cards {
	display: flex;
	flex-direction: row;
	justify-content: center; /* Changed from space-around to center */
	align-items: flex-start;
	gap: 20px; /* Increased gap for better spacing when centered */
}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */

/* START MODIFICATION: Adjusted image sizing for responsiveness */
.outcome-link-wrapper .img-responsive {
	height: auto !important;
	width: 100% !important;
	max-width: 120px;
	margin: 0 auto;
}
/* END MODIFICATION */
/* This existing rule should work perfectly with the new structure */
.outcome-link-wrapper {
	display: block;
	/*padding: 5px;*/
	border-radius: 4px;
	text-decoration: none !important;
	color: inherit;
	transition: background-color 0.2s ease-in-out;
	border: 1px solid #ddd; /* This adds the light gray border */
}

	/* The existing hover effect will now apply to each card individually */
	.outcome-link-wrapper:hover {
		background-color: #f0f0f0;
		cursor: pointer;
	}

/* --- Recommendation Section --- */
.recommendation-body {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 5px;
	margin: 5px
}

/* Left Column (Rec Image & Price) */
.recommendation-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 90px;
}

.custom-rec-image {
	width: 90px;
	height: 90px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 4px;
	margin: 0;
}

.custom-rec-price {
	font-size: 12px;
	font-weight: 500;
	margin-top: 5px;
}

/* Right Column (Rec Text & Button) */
.recommendation-right {
	flex-grow: 1;
	/* position: relative;
    padding-bottom: 30px;*/
}

.custom-rec-title {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 5px 0;
}

.custom-rec-description {
	font-size: 14px;
	color: #555;
	line-height: 1.4;
	margin: 0 0 5px 0; /* Combined rule */
}

/* Shopify Button Container */
div[id^="product-rec-"] {
	/*position: absolute;*/
	bottom: -10px;
	left: 0;
	width: 100%;
}

/* This container rule is correct and does not need to be changed. */
.recommendation-buttons-container {
	/*position: absolute;*/
	/* bottom: -10px;*/
	/* left: 0;*/
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px; /* Adds spacing above the buttons */
}

	/* This corrected rule forces the link to be blue and underlined by default. */
	.recommendation-buttons-container .link-view-store,
	.recommendation-buttons-container .link-view-store:visited {
		font-size: 14px !important;
		color: steelblue !important; /* Force the blue color */
		text-decoration: underline !important; /* Force the underline */
		font-weight: 500 !important;
	}

		/* This hover rule is also updated to ensure it works correctly. */
		.recommendation-buttons-container .link-view-store:hover {
			color: #3a6b94 !important; /* A slightly darker blue for the hover effect */
		}




.btn-store:hover {
	background-color: #5a5a5a; /* Slightly lighter on hover */
	color: #ffffff;
}
/* --- Shared Link Box & Hover Styles --- */

/* Base style for the rating and outcome link boxes */
.cell-rating a,
.outcome-link-wrapper {
	display: block;
	padding: 5px 5px; /* Reduced top/bottom padding */
	border-radius: 4px;
	text-decoration: none !important;
	color: inherit;
	transition: background-color 0.2s ease-in-out;
}

/* =================================================================== */
/* START CHANGE: Added new styles for the updated user profile layout. */
/* The old styles below have been left for reference but are no longer active. */
/* =================================================================== */

/* --- NEW User Profile Layout (Name Below Picture) --- */

/* Main container holding the details column and icons column */
.user-profile-container {
	display: flex;
	flex-direction: row; /* Lay out columns side-by-side */
	align-items: flex-start; /* Align to the top */
	gap: 2px; /* Space between the two columns */
}

/* Column 1: Picture and Name */
.user-details-col {
	display: flex;
	flex-direction: column; /* Stack image and name vertically */
	align-items: center; /* Center them horizontally */
	text-decoration: none;
	color: inherit;
}

	.user-details-col:hover {
		text-decoration: none;
	}

/* Overriding default bold and adjusting margin for the name */
.flow-user-name {
	font-weight: 500;
	font-size: 14px;
	margin-top: 5px; /* Space between picture and name */
	white-space: nowrap;
}

/* =================================================================== */
/* START CHANGE: Reduced gap between icons. */
/* =================================================================== */
/* Column 2: Icons */
.user-icons-col {
	display: flex;
	flex-direction: column; /* Stack icons vertically */
	align-items: center;
	justify-content: space-between; /* Pushes icons to the top and bottom */
	height: 70px; /* Match the height of .flow-profile-pic */
	/* padding-top: 5px; Removed */
	/* gap: 4px; Removed */
}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */


/* Corrected style for the user profile box with Flexbox centering */
/*
.user-profile-container {
	display: flex !important;
	align-items: center !important; 
	gap: 5px !important;
}
*/

/* Right column container: stacks the name/heart row and chart button row */
/*
.user-profile-info-col {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	min-height: 70px !important 
}
*/

/* Top row of right column: styles the heart and name */
/*
.info-col-top-row {
	display: flex;
	align-items: center;
	gap: 2px; 
}
*/
/* --- Row holding the chart icon by the persons picture (default DESKTOP spacing) --- */
/*
.info-col-bottom-row {
	position: static;
	padding-top: 0 !important;
}
*/

/* =================================================================== */
/* END CHANGE */
/* =================================================================== */


/* --- General styling to make the icon buttons cleaner --- */
.btn-owner-guide-make, .btn-chart {
	background: transparent !important;
	border: none !important;
	padding: 0 !important; /* Removes all padding from the icon buttons */
	line-height: 1;
}

	/* --- Icon image sizes --- */
	.btn-owner-guide-make .img-adore,
	.btn-chart img {
		width: 25px;
		height: 25px;
		vertical-align: middle;
	}
/* END MODIFICATION */

/* START MODIFICATION: Position chart icon correctly on wide screens */
.flow-user-info-wrapper {
	display: flex;
	align-items: center;
	gap: 5px;
}
/* END MODIFICATION */

/* --- Icon image sizes --- */
.btn-owner-guide-make .img-adore,
.btn-chart img {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

/* =================================================================== */
/* START CHANGE: Reinstated max-width to constrain image on large screens. */
/* =================================================================== */
.birthday-tarot-section {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 10px 0;
	border-top: 1px solid #eee;
	margin-top: 10px;
}

.birthday-card-image-wrapper {
	flex: 1 1 50%;
	display: flex;
	justify-content: center;
	padding: 5px;
	border-radius: 4px;
	color: inherit;
	transition: background-color 0.2s ease-in-out;
	border: 1px solid #ddd; /* This adds the light gray border */
	align-items: center;
	max-width: 160px; /* Constrain image on large screens */
}

.birthday-card-image {
	width: 100%;
	height: auto;
	display: block;
}

.birthday-details-wrapper {
	flex: 1 1 50%;
	min-width: 0; /* Allows text to wrap correctly */
}

	.birthday-details-wrapper p {
		margin: 0 0 8px 0;
		font-size: 14px;
	}
/* =================================================================== */
/* END CHANGE */
/* =================================================================== */


/* =================================================================== */
/* Responsive Layout for Recommendation Buttons                      */
/* =================================================================== */

/* --- 1. MOBILE STYLES (screens up to 480px wide) --- */
@media (max-width: 480px) {
	.recommendation-buttons-container {
		display: flex;
		flex-direction: column !important; /* STACKED layout */
		align-items: center !important;
		gap: 8px !important;
		margin-top: 10px;
	}

		/* This removes the extra vertical space on mobile */
		.recommendation-buttons-container > div[id*='product-component'] {
			margin: 0 !important;
		}
}

/* --- 2. DESKTOP & TABLET STYLES (screens 481px and wider) --- */
@media (min-width: 481px) {
	.recommendation-buttons-container {
		display: flex;
		flex-direction: row !important; /* SIDE-BY-SIDE layout */
		align-items: center !important;
		gap: 15px !important;
		margin-top: 10px;
	}
}
/* (No extra styling is needed for the bottom row) */
/* This directly targets the Shopify button component that is added to the page.
     We give IT a specific width, which is a much more stable approach. */
.recommendation-buttons-container > div[id*='product-component'] {
	width: 180px !important;
}
/* =================================================================== */
/* NEW User Profile Layout                                           */
/* =================================================================== */

/* --- Main container for the picture and the info to its right --- */
.user-profile-container {
	gap: 0 !important;
	align-items: flex-start !important;
}

	/* --- Removes unwanted padding from around the profile picture (top of pic) --- */
	.user-profile-container > a {
		padding: 5px !important;
		line-height: 1;
	}

/* --- The column with the icons and name --- */
.user-profile-info-col {
	position: relative;
	padding-left: 2px; /* Creates a small, consistent space next to the pic */
}

/* --- Reduces space between the heart icon and the user's name --- */
.info-col-top-row {
	gap: 2px !important;
}

/* --- Row holding the chart icon by the persons picture (default DESKTOP spacing) --- */
.info-col-bottom-row {
	position: absolute;
	top: 25px !important;
	left: 2px;
	padding-top: 6px !important;
}
/* 1. Define the horizontal gap between the profile details and the icons */
.user-profile-container {
	/* Ensures the horizontal space between the 'user-details-col' (Profile) 
       and 'user-icons-col' (Icons) is exactly 2px */
	column-gap: 1px;
	/* Ensure alignment (if not already set) */
	display: flex;
	align-items: center;
}

/* 2. Define the vertical gap between the icons themselves */
.user-icons-col {
	/* Sets the vertical space between the two buttons to 2px */
	row-gap: 1px;
	/* Ensure icons are stacked vertically */
	display: flex;
	flex-direction: column;
}

/* 3. Remove conflicting margins and padding from the buttons */
/* We target the buttons specifically within this container */
.user-profile-container .btn-ins {
	/* Overrides 'margin: 5px;' from site.css */
	margin: 0 !important;
	/* Overrides padding from Bootstrap (e.g., 6px 10px) to tighten the look. */
	padding: 0 !important;
}
/*
 * ===================================================================
 * File: tarotportrait.css
 * Version: 2.0
 * Description: Added a .text-muted class to style the new trend
 * description text, ensuring it matches the look of the original
 * Trends.ascx control.
 * ===================================================================
*/

/* =================================================================== */
/* STYLES FOR TarotPortrait.aspx                                       */
/* =================================================================== */

.section-header {
	font-size: 20px !important;
	font-family: 'Raleway', sans-serif;
	color: #333;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 15px;
}

	.section-header.no-border {
		border-bottom: none;
		margin-bottom: 10px;
	}

/* --- Upper Section --- */
.profile-image-section .image-container {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 10px auto;
}

.adore-icon {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 16px;
	color: #ff4757;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 28px;
	text-align: center;
	transition: all 0.2s ease-in-out;
}

	.adore-icon:hover {
		transform: scale(1.1);
	}

.profile-image-section .gallery {
	font-size: 14px;
	margin-top: 15px;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr; /* Default to 1 column */
	gap: 0 10px;
	font-size: 14px;
}

/* Use 2 columns on larger screens */
@media (min-width: 1200px) {
	.info-grid {
		grid-template-columns: 1fr 1fr;
	}
}


/* Update this existing rule */
.info-item > strong {
	display: inline; /* Changed from 'block' to 'inline' */
	font-weight: bold;
	color: #555;
	margin-bottom: 0; /* Remove the bottom margin */
	margin-right: 8px; /* Add space between the label and value */
	font-size: 0.9em;
	/* text-transform: uppercase;*/
}

/* Also, update this existing rule to match your goal image */
.info-item .info-value {
	background-color: transparent;
	padding: 0;
	border: none;
	min-height: unset;
}

.panel-birthcard .panel-heading {
	font-size: 18px;
	font-weight: bold;
}

/* Overriding the max-width from site.css for our full-width panels */
.gallery.prediction-banner, .gallery.text-center {
	max-width: none;
}

.prediction-banner {
	overflow: hidden; /* Clearfix for floated elements */
}

blockquote {
	margin-bottom: 10px;
}

.featured-reading-cards {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 25px 0;
}

	.featured-reading-cards img {
		width: 150px;
		height: auto;
		border-radius: 8px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.1);
		border: 1px solid #ddd;
	}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.panel-birthcard {
		margin-top: 20px;
	}
}
/* =================================================================== */
/* NEW STYLES FOR REDESIGNED PORTRAIT PAGE                           */
/* =================================================================== */

/* --- Main Page Grid Layout --- */
/*.portrait-grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;*/ /* Two equal columns */
/*grid-template-areas:
		"left right"
		"full full";
	gap: 30px;
}

.portrait-left-col {
	grid-area: left;
}

.portrait-right-col {
	grid-area: right;
}

.portrait-full-width-col {
	grid-area: full;
}

.content-block {
	margin-bottom: 20px;
}*/

/* --- User Header (Item 1, 2, 3) --- */
.user-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.user-image-square {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 2px; /* Slightly rounded corners are nicer than sharp squares */
	border: 1px solid #ddd;
}

.user-info-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.user-info-top-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

h2.user-nickname {
	font-size: 16px;
	font-weight: 200;
	margin: 0;
}

.user-action-icon {
	font-size: 40px;
	color: #ff4757; /* Heart color */
	padding: 5px;
	border: 1px solid #eee;
	border-radius: 5px;
	display: inline-block;
	line-height: 1;
	transition: background-color 0.2s;
}
/* Title and Chart Icon */
.page-section-title {
	font-size: 36px; /* Increased from 28px for a larger title */
	font-weight: 400;
	margin-top: 0; /* Add this line to move the title up */
	margin-bottom: 20px;
	color: #333;
}

.chart-icon-img {
	width: 40px;
	height: 40px;
	vertical-align: middle; /* Helps with alignment */
}

.user-action-icon:hover {
	background-color: #f5f5f5;
	color: #e84118;
}

.user-action-icon .fa-line-chart {
	color: #555; /* Chart icon color */
}

/* --- Right Column Top Boxes (Item 4, 5) --- */
.mood-box {
	background-color: #f5f5f5;
	border: 1px solid #f5f5f5;
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 5px;
	font-size: 16px;
	text-align: center;
}

	.mood-box .mood-value {
		color: #8b0000; /* Dark Red */
		font-weight: bold;
	}

.membership-box {
	background-color: #f9f9f9;
	border: 1px solid #eee;
	padding: 10px;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
	margin-bottom: 15px;
	align-items: center; /* Add this line to center the button */
}

	.membership-box .btn {
		margin-top: 5px;
	}

/* --- Left Column Content --- */
.today-date-banner {
	padding: 10px;
	background-color: #f5f5f5;
	border-radius: 5px;
	text-align: center;
	/*margin-bottom: 20px;*/
}

.trend-box {
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
}

/* --- Trend and Rating Colors (Item 10, 16) --- */
.trend-positive, .rating-positive {
	color: #28a745; /* Green */
}

.trend-negative, .rating-negative {
	color: #dc3545; /* Red */
}

/* --- Right Column Content --- */
.birth-card-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.birth-card-image {
	width: 150px;
	height: auto;
	border-radius: 8px;
	border: 1px solid #ddd;
}

/* --- General & Responsive --- */
blockquote {
	font-size: 16px;
	border-left: 3px solid #eee;
	margin: 0;
	padding-left: 15px;
}

	blockquote.text-left {
		text-align: left;
	}

@media (max-width: 991px) {
	.portrait-grid-container {
		grid-template-columns: 1fr; /* Stack columns on smaller screens */
		grid-template-areas:
			"left"
			"right"
			"full";
	}
}
/* Add a vertical separator between the main columns */
/*.portrait-left-col {
	border-right: 2px solid #eee;
}*/
/* Find this existing rule */
.portrait-right-col {
	grid-area: right;
}

/* And right column will not stretch to cover Powers: */
.portrait-right-col {
	grid-area: right;
	align-self: start; /* This prevents the column from stretching vertically */
}
/* Push the mood box down to align with the start of the user portrait block */
.mood-box {
	margin-top: 3px;
}
/* Force the Tarot Powers section into a single-column list on all screen sizes */
@media (min-width: 1200px) {
	.info-grid {
		grid-template-columns: 1fr;
		/* Override existing 2-column layout [cite: 46] */
	}
}

/*
 * ===================================================================
 * CHANGE START: Added helper class for muted text.
 * ===================================================================
*/
.text-muted {
	color: #777;
	font-weight: normal;
	font-size: 14px;
}
/*
 * ===================================================================
 * CHANGE END
 * ===================================================================
*/

