﻿    body {
        font-family: 'Segoe UI', sans-serif;
        background: url('https://stellarsoulmates.com/Assets/Images/JoinBackground.jpg') no-repeat center center fixed;
        background-size: cover;
        color: #333;
        margin: 0; /* ADDED: Explicitly set margin to 0 */
    }
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #333;
        padding: 0.5rem 1rem;
        color: white;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar img {
        height: 80px;
    }

    .nav-links {
        display: flex;
        gap: 1.2rem;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

    .nav-links a:hover {
        text-decoration: underline;
    }

    .dark-mode {
        background-color: #111 !important;
        color: #eee;
    }

    .dark-mode .navbar {
        background-color: #222;
    }

    .dark-toggle {
        cursor: pointer;
        background: #555;
        color: white;
        border: none;
        padding: 4px 10px;
        border-radius: 5px;
        font-size: 0.9rem;
    }

/* --- DARK MODE AWARENESS --- */
body.dark-mode .modal-content {
    background: #222;
    color: #f5f5f5;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

    body.dark-mode .modal-content h3 {
        color: #ff5555;
    }

    body.dark-mode .modal-content p {
        color: #ddd;
    }

    body.dark-mode .modal-close {
        background: #4caf50;
        color: #fff;
    }

        body.dark-mode .modal-close:hover {
            background: #3e9141;
        }

    body.dark-mode #missingFieldsList li {
        color: #ff7777;
    }

    /* Optional: slightly darker overlay for dark mode */
    body.dark-mode .modal-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .modal-content, .modal-overlay {
        transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    }

    .hamburger {
        display: none;
        font-size: 1.4rem;
        cursor: pointer;
    }

    @media only screen and (max-width: 768px) {
        /* Swap background for mobile screens */
        body {
            background: url('https://stellarsoulmates.com/Assets/Images/JoinBackgroundMOB.jpg') no-repeat center center fixed;
            background-size: cover;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            background: #333;
            position: absolute;
            top: 60px;
            right: 0;
            width: 200px;
            padding: 1rem;
        }

        .nav-links.show {
            display: flex;
        }

        .hamburger {
            display: block;
        }
    }


    .content-wrapper {
        padding: 2rem;
        flex-grow: 1; /* Allows content to take up available space */
        max-width: 900px; /* Adjust this to match your desired profile page width */
        margin: 2rem auto; /* This centers the content-wrapper itself */
    }

    /* Footer Styles */
    .footer {
        background-color: #222;
        color: #eee;
        padding: 2rem;
        margin-top: auto; /* Pushes the footer to the bottom */
    }

    .footer-columns {
        display: flex;
        flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
        justify-content: space-around;
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-column {
        flex: 1;
        min-width: 200px; /* Minimum width for columns before wrapping */
    }

    .footer-column h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }

    .footer-column ul li a {
        color: #ccc;
        text-decoration: none;
    }

    .footer-column ul li a:hover {
        text-decoration: underline;
        color: #fff;
    }

    .footer-column .company-info p {
        margin: 0.5rem 0;
        color: #ccc;
    }

    .footer-column .company-info .logo-container {
        margin-top: 1rem;
    }

    .footer-column .company-info .logo-container img {
        height: 60px; /* Adjust logo size as needed */
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #444;
        color: #aaa;
        font-size: 0.9rem;
    }

    /* Styles for the white form container box */
    .form-container {
        max-width: 600px;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.85);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }

    .dark-mode .form-container {
        background-color: #333;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* Styles for the main title within the form container */
    .form-title {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #eee; /* A subtle line under the title */
        padding-bottom: 1rem;
    }

    .dark-mode .form-title {
        color: #eee;
        border-bottom-color: #555;
    }

    /* Styles for the description paragraph below the title */
    .form-description {
        font-size: 1rem;
        color: #666;
        margin-bottom: 2rem;
    }

    .dark-mode .form-description {
        color: #bbb;
    }


    /* Adjustments for form-horizontal labels and controls */
    .form-horizontal .control-label {
        text-align: right; /* Aligns labels to the right */
        padding-top: 7px; /* Adjust vertical alignment with inputs */
        font-weight: 600; /* Make labels a bit bolder */
        color: #444;
    }

    .dark-mode .form-horizontal .control-label {
        color: #ccc;
    }

    .form-horizontal .form-group {
        margin-bottom: 1.5rem; /* Space between form groups */
        display: flex; /* Use flexbox for better alignment */
        align-items: flex-start; /* Align items to the top for multi-line controls like checkbox lists */
    }

    .form-horizontal .col-md-offset-3 {
        margin-left: 25%; /* To match col-md-3 */
    }

    /* Specific styling for CheckBoxList items to match inline display */
    .list-inline li {
        display: inline-block;
        padding-right: 15px; /* Space between checkbox items */
        margin-bottom: 10px; /* If items wrap, gives vertical space */
    }

    /* Style for text inputs and dropdowns */
    .form-control {
        border-radius: 4px;
        border: 1px solid #ddd;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        height: 38px; /* Standard height for inputs */
    }

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    /*----------------------------------------------------*/
    /*----------- HOROSCOPE SUMMARY FORMATTING -----------*/
    /*----------------------------------------------------*/
    .enhanced-reading {
        background: rgba(250, 250, 250, 0.9);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 1rem;
        margin-top: 1rem;
        font-family: 'Segoe UI', sans-serif;
    }

    .summary-title {
        color: #333;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .toggle-btn {
        float: right;
        background-color: #4CAF50;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 6px 14px;
        cursor: pointer;
        font-size: 0.9rem;
    }

        .toggle-btn:hover {
            background-color: #45a049;
        }

    .summary-box {
        background: #f8f8f8;
        border-left: 4px solid #4CAF50;
        padding: 1rem;
        font-style: italic;
        color: #444;
    }

    .accordion-btn {
        width: 100%;
        background-color: #4CAF50;
        color: white;
        font-weight: 600;
        padding: 10px 15px;
        border: none;
        border-radius: 6px;
        text-align: left;
        margin-top: 8px;
        cursor: pointer;
    }

        .accordion-btn span {
            float: right;
        }

    .accordion-content {
        display: none;
        padding: 1rem;
        background: #fff;
        border-radius: 0 0 6px 6px;
        border: 1px solid #ddd;
        margin-bottom: 8px;
    }

    /* 🌟 ENHANCED HOROSCOPE UI */
    .enhanced-reading {
        background: rgba(250, 250, 250, 0.95);
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        padding: 1.2rem;
        margin-top: 1rem;
        font-family: 'Segoe UI', sans-serif;
    }

    .summary-title {
        color: #333;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .toggle-btn {
        float: right;
        background-color: #6C63FF;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 14px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: background 0.3s ease;
    }

        .toggle-btn:hover {
            background-color: #574ae2;
        }

    .summary-box {
        background: linear-gradient(to right, #f0f9ff, #f6f7ff);
        border-left: 4px solid #6C63FF;
        padding: 1rem;
        font-style: italic;
        color: #444;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    /* Accordion Buttons */
    .accordion-btn {
        width: 100%;
        border: none;
        border-radius: 8px;
        text-align: left;
        padding: 12px 16px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
        margin-top: 10px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

        .accordion-btn span {
            float: right;
            transition: transform 0.2s ease;
        }

    .accordion-content {
        display: none;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        border: 1px solid #ddd;
        background: #fff;
        margin-bottom: 10px;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 🎨 Color Themes */
    .accordion-btn.love {
        background: linear-gradient(90deg, #ff758c, #ff7eb3);
        color: white;
    }

    .accordion-btn.money {
        background: linear-gradient(90deg, #f9d423, #ff4e50);
        color: white;
    }

    .accordion-btn.career {
        background: linear-gradient(90deg, #2193b0, #6dd5ed);
        color: white;
    }

    /* Hover */
    .accordion-btn:hover {
        transform: scale(1.01);
    }

    /* Typography inside accordion */
    .accordion-content p {
        line-height: 1.5;
        color: #333;
        margin-bottom: 0.6rem;
    }

    .accordion-content em {
        color: #555;
    }

/*----------------------------------------------------*/
    .form-group {
        margin-bottom: 1rem;
    }

    label {
        display: block;
        margin-bottom: 0.5rem;
    }

    input[type="text"], input[type="password"], input[type="email"], input[type="datetime"], select {
        width: 100%;
        padding: 0.5rem;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .submit-btn {
        background-color: #4CAF50;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .submit-btn:hover {
        background-color: #45a049;
    }

    .submit-btn.disabled-btn {
        background-color: #aaa !important;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .submit-btn.enabled-btn {
        background-color: #28a745 !important;
        cursor: pointer;
        opacity: 1;
    }
/*-------------------------------------------------------------------*/
    .dark-mode .form-control {
        background-color: #444;
        color: #eee;
        border-color: #666;
    }

    .dark-mode .form-control::placeholder { /* Placeholder text color in dark mode */
        color: #bbb;
    }

    /* Primary button style */
    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004085;
    }

    .dark-mode .btn-primary {
        background-color: #4CAF50; /* A different color for dark mode button */
        border-color: #4CAF50;
    }

    .dark-mode .btn-primary:hover {
        background-color: #45a049;
        border-color: #3e8e41;
    }

    /* ADD THESE STYLES TO YOUR EXISTING StyleSheet.css FILE */
    .info-fieldset {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 1.5rem 2rem 2rem 2rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .fieldset-legend {
        background-color: white;
        padding: 0 10px;
        font-weight: bold;
        color: #6a0dad;
        position: absolute;
        top: -0.7em;
        left: 20px;
        font-size: 1.1em;
    }

    .fieldset-intro {
        color: #666;
        font-size: 0.9em;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .dark-mode .info-fieldset {
        border-color: #555;
    }

    .dark-mode .fieldset-legend {
        background-color: #333; /* Match dark mode form container */
        color: #eee;
    }

    .dark-mode .fieldset-intro {
        color: #bbb;
    }

    .dating-tips-container {
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 20px;
        padding: 30px;
        margin: 40px auto;
        max-width: 850px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .page-title {
        font-size: 2em;
        text-align: center;
        color: #333;
        margin-bottom: 15px;
    }

    .intro-text, .closing-text {
        text-align: center;
        font-size: 1.1em;
        color: #444;
        margin-bottom: 25px;
    }

    .tip-section {
        margin-bottom: 25px;
    }

    .tip-section h2 {
        color: #5b2e91;
        font-size: 1.3em;
        margin-bottom: 8px;
    }

    .tip-section p {
        color: #333;
        line-height: 1.6;
    }

    .zodiac-love-container {
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 20px;
        padding: 30px;
        margin: 40px auto;
        max-width: 950px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .zodiac-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .zodiac-sign {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        padding: 15px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .zodiac-sign:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    }

    .zodiac-sign h2 {
        color: #5b2e91;
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .zodiac-sign p {
        color: #333;
        line-height: 1.6;
    }

    .zodiac-love-container .closing-text {
        text-align: center;
        margin-top: 40px;
        font-style: italic;
        color: #444;
    }

    .success-stories-container {
        background-color: rgba(255, 255, 255, 0.85);
        border-radius: 20px;
        padding: 40px;
        margin: 40px auto;
        max-width: 900px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .story {
        margin-bottom: 30px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .story:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    }

    .story h2 {
        color: #5b2e91;
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .story p {
        color: #333;
        line-height: 1.6;
    }

    .cta-text {
        text-align: center;
        font-size: 1.1em;
        font-weight: 500;
        margin-top: 20px;
    }

    .cta-text a {
        color: #5b2e91;
        text-decoration: none;
    }

    .cta-text a:hover {
        text-decoration: underline;
    }

/*    .page-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        line-height: 1.7;
    }
*/
.page-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    padding: 40px 0;
    background: url('https://stellarsoulmates.com/Assets/Images/stars-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

    .page-title {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--accent-color, #b86bff);
    }

    .intro-text {
        text-align: center;
        margin-bottom: 2rem;
        color: #555;
    }

    .safety-section {
        margin-bottom: 2rem;
        background: rgba(255,255,255,0.05);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .safety-section h2 {
        font-size: 1.3rem;
        color: var(--accent-color, #b86bff);
        margin-bottom: 0.5rem;
    }

    .safety-section ul {
        padding-left: 20px;
    }

    .safety-section li {
        margin-bottom: 0.5rem;
    }

    .cta-box {
        text-align: center;
        margin-top: 2.5rem;
        background: var(--accent-bg, #f7f4ff);
        padding: 1.5rem;
        border-radius: 12px;
    }

    .btn-primary {
        display: inline-block;
        padding: 10px 25px;
        background-color: var(--accent-color, #b86bff);
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-primary:hover {
        background-color: #9c4ff2;
    }

    .translucent-box {
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 20px;
        padding: 40px;
        max-width: 700px;
        width: 90%;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .quiz-question {
        margin-bottom: 20px;
    }

    .dropdown, .quiz-button {
        padding: 10px;
        border-radius: 8px;
        border: none;
        width: 100%;
        font-size: 1em;
        margin-top: 5px;
    }

    .quiz-button {
        background-color: #c69aff;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s;
    }

    .quiz-button:hover {
        background-color: #a472ff;
    }

    .result-text {
        font-size: 1.2em;
        line-height: 1.5;
        color: #f7d9ff;
        text-align: center;
        margin-top: 20px;
    }

    .chk-inline {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .chk-inline a {
        color: #4da3ff; /* optional link color */
        text-decoration: none;
    }

    .chk-inline a:hover {
        text-decoration: underline;
    }

    /*---------------------------------------------------------*/
    /*--- Popup Button styling */
    /* --- Modal Overlay --- */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* --- Modal Box --- */
    .modal-content {
        background: #fff;
        padding: 1.5rem 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        text-align: center;
        max-width: 400px;
        width: 90%;
        animation: slideDown 0.3s ease-out;
    }

    .modal-content h3 {
        margin-top: 0;
        color: #cc0000;
    }

    .modal-content p {
        margin: 10px 0 20px;
        font-size: 0.95rem;
        color: #333;
    }

    /* --- Modal Button --- */
    .modal-close {
        background: #28a745;
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.2s;
    }

    .modal-close:hover {
        background: #218838;
    }

    /* --- Animations --- */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* --- Modal Overlay --- */
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.4s ease-in-out;
    }

    /* --- Modal Content Box --- */
    .modal-content {
        background: #fff;
        padding: 1.5rem 2rem;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        text-align: center;
        max-width: 420px;
        width: 90%;
        opacity: 0;
        transform: translateY(-20px);
        animation: slideDown 0.4s ease-out forwards;
    }

    /* --- Title & Text --- */
    .modal-content h3 {
        margin-top: 0;
        color: #cc0000;
        font-size: 1.4rem;
    }

    .modal-content p {
        margin: 10px 0 20px;
        font-size: 0.95rem;
        color: #333;
    }

    /* --- Close Button --- */
    .modal-close {
        background: #28a745;
        color: #fff;
        border: none;
        padding: 0.5rem 1.2rem;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.2s, transform 0.2s;
    }

    .modal-close:hover {
        background: #218838;
        transform: scale(1.05);
    }

    /* --- Animations --- */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(-30px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes shake {
        0%, 100% {
            transform: translateX(0);
        }

        20%, 60% {
            transform: translateX(-8px);
        }

        40%, 80% {
            transform: translateX(8px);
        }
    }

    /* --- Trigger class for shake --- */
    .shake {
        animation: shake 0.4s ease-in-out;
    }

    @keyframes fieldHighlight {
        0% {
            box-shadow: 0 0 0px 0 rgba(255, 223, 0, 0);
        }

        50% {
            box-shadow: 0 0 8px 4px rgba(255, 223, 0, 0.8);
        }

        100% {
            box-shadow: 0 0 0px 0 rgba(255, 223, 0, 0);
        }
    }

    input:focus, select:focus {
        animation: fieldHighlight 1.2s ease-out;
        outline: none;
    }

    .premium-horoscope {
        max-width: 850px;
        margin: 2rem auto;
        background: rgba(255, 255, 255, 0.95);
        padding: 2rem;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        font-family: 'Segoe UI', sans-serif;
    }

    .reading-date {
        text-align: center;
        font-size: 1rem;
        color: #666;
        margin-bottom: 2rem;
    }

    .reading-section {
        background: #f8f8ff;
        border-left: 5px solid #6c63ff;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        padding: 1rem 1.2rem;
    }

    .reading-section h3 {
        margin-bottom: 0.5rem;
        color: #4b3eff;
    }

    .quick-summary {
        font-weight: 600;
        color: #333;
    }

    .expanded-overview {
        color: #444;
        margin-top: 0.3rem;
    }

    details.full-reading {
        margin-top: 0.8rem;
        background: #fff;
        border-radius: 6px;
        padding: 0.75rem;
        box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
    }

        details.full-reading summary {
            cursor: pointer;
            font-weight: bold;
            color: #6c63ff;
            margin-bottom: 0.5rem;
        }

            details.full-reading summary:hover {
                text-decoration: underline;
            }

    .full-text {
        margin-top: 0.5rem;
        font-size: 0.95rem;
        color: #333;
        line-height: 1.6;
    }

    .aspect-heading {
        text-align: center;
        background: linear-gradient(90deg, #8a2be2, #da70d6);
        color: white;
        padding: 10px;
        margin: 30px 0 10px 0;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .aspect-interpretations {
        background-color: rgba(255,255,255,0.9);
        border-radius: 10px;
        padding: 15px 25px;
        margin-bottom: 25px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .lifearea-block h4 {
        color: #e91e63;
        margin-bottom: 5px;
    }

    .lifearea-block p {
        margin-bottom: 10px;
    }

    details summary {
        cursor: pointer;
        color: #4a4aff;
        font-weight: bold;
        margin-top: 5px;
    }

    details summary:hover {
        text-decoration: underline;
    }

    details p {
        margin-top: 8px;
        line-height: 1.6;
    }

    .aspect-heading h3 {
        text-align: center;
        color: white;
        background: linear-gradient(90deg, #7b2cbf, #b5179e);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }

    .aspect-interpretations {
        background-color: rgba(255,255,255,0.95);
        border-radius: 10px;
        padding: 15px 25px;
        margin-bottom: 25px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .lifearea-block h4 {
        margin-top: 15px;
        font-weight: bold;
        color: #e91e63;
    }

    details summary {
        cursor: pointer;
        color: #4a4aff;
        font-weight: bold;
        margin-top: 5px;
    }

    details summary:hover {
        text-decoration: underline;
    }

    details p {
        margin-top: 8px;
    }

    /* === Page Container === */
    .daily-container {
        max-width: 900px;
        margin: 10px auto 2rem;
        padding: 0 18px 18px;
        background: rgba(248,248,248,.95);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,.2), inset 0 0 10px rgba(0,0,0,.1);
        font-family: 'Segoe UI',sans-serif;
    }

    body.dark-mode .daily-container {
        background: rgba(30,30,30,.95);
        color: #eee;
    }

    /* === Section Headers === */
    .daily-container .section-header {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 700;
        color: #2e3b6d;
        margin: 1rem 0;
    }

    body.dark-mode .daily-container .section-header {
        color: #9fd3ff;
    }

    /* === SUMMARY CARD === */
    .daily-container .daily-summary {
        padding: 18px 20px;
        background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,245,255,.95));
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 14px;
        box-shadow: 0 6px 14px rgba(0,0,0,.08);
    }

    body.dark-mode .daily-container .daily-summary {
        background: rgba(40,40,52,.9);
        border-color: rgba(255,255,255,.06);
        box-shadow: 0 6px 14px rgba(0,0,0,.35);
    }

    .daily-container .daily-summary h3 {
        color: #d14f8f;
        margin: 1rem 0 .25rem;
        font-size: 1.3rem;
    }

    .daily-container .daily-summary p {
        line-height: 1.65;
        color: #333;
        margin: .4rem 0;
    }

    body.dark-mode .daily-container .daily-summary p {
        color: #ccc;
    }

    .daily-container .daily-summary em {
        color: #4CAF50;
    }

    /* === DATE LABEL === */
    .reading-date-label {
        display: block;
        font-size: 1.2rem;
        color: #777;
        margin-bottom: 1rem;
    }

    body.dark-mode .reading-date-label {
        color: #bbb;
    }

    /* === Namespaced collapsible for Daily Readings === */
    .reading-toggle {
        background: #4CAF50;
        color: #fff;
        cursor: pointer;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border: none;
        border-radius: 10px;
        outline: none;
        font-size: 1.15rem;
        font-weight: 700;
        transition: background-color .25s ease;
        margin-top: 14px;
    }

    .reading-toggle:hover {
        background: #45a049;
    }

    .reading-toggle::after {
        content: ' ▼';
        font-size: 1rem;
    }

    .reading-toggle[aria-expanded="true"]::after {
        content: ' ▲';
    }

    .reading-panel {
        overflow: hidden;
        background: rgba(248,248,248,.95);
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: inset 0 0 10px rgba(0,0,0,.1);
        max-height: 0;
        transition: max-height .35s ease, padding .35s ease;
    }

    body.dark-mode .reading-panel {
        background: rgba(40,40,40,.9);
    }

    /* Only add the inner padding when open */
    .reading-panel-inner {
        padding: 0 18px 0;
    }

    /* When we open, we remove the hidden attribute and expand */
    .reading-panel.is-open {
        max-height: 3000px; /* large enough for your content */
    }

    .reading-panel.is-open .reading-panel-inner {
        padding: 15px 18px 18px;
    }

/* ------------------------------------*/
/* DAILY READINGS Default2.aspx STLES  */
/*-------------------------------------*/
    /* 🌙 Smooth collapsible animation */
    .collapsible-panel {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.6s ease, opacity 0.5s ease;
    }

    .collapsible-panel.is-open {
        opacity: 1;
        max-height: 1000px; /* enough to fit most sections */
    }

    /* 🎚️ Optional visual polish */
    .numerology-summary,
    .daily-summary {
        border-radius: 10px;
        background: rgba(248, 248, 248, 0.95);
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        padding: 16px;
    }

    /* 🔽 Add subtle arrow rotation */
    button[aria-expanded="true"] span.arrow {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    button[aria-expanded="false"] span.arrow {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
