/*
Theme Name: Fictioneer Child
Template: fictioneer
Author: Tetrakern
Author URI: https://github.com/Tetrakern
Donate link: https://ko-fi.com/tetrakern
Contributors: tetrakern

License: GNU General Public License v3.0 or later
License URI: http://www.gnu.org/licenses/gpl.html

Requires at least: 5.5
Tested up to: 6.5.0
Requires PHP: 7.4
Version: 1.0.3

Description: A blank child theme for Fictioneer.

Fictioneer Child WordPress Theme, (C) 2023 Tetrakern
Fictioneer Child is distributed under the terms of the GNU GPL.
*/


div#kofiShortcode627Html {
    /* align-content: center; */
    align-items: anchor-center;
    display: contents;
}

/* Wrapper for the entire purchase block */
.insufficient-funds-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Container for the three purchase boxes */
.points-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

/* Individual purchase option box */
.points-option {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.points-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.points-option h3 {
    margin-top: 0;
    font-size: 1.6em;
    color: #333;
}

.points-option .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 20px;
}

/* Buy Now button style */
.mycred-buy-button {
    display: inline-block;
    padding: 12px 25px !important;
    background-color: #0073aa !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    border: none !important;
    transition: background-color 0.3s ease;
}

.mycred-buy-button:hover {
    background-color: #005a87 !important;
    color: #ffffff !important;
}

/* Custom amount form section */
.mycred-custom-form {
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    text-align: center;
}

.mycred-custom-form h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.6em;
    color: #333;
}

.mycred-custom-form .custom-form-subtext {
    margin-top: 0;
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

/* Styling the form generated by [mycred_buy_form] */
form.myCRED-buy-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

form.myCRED-buy-form .form-control {
    width: 100%;
    max-width: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1em;
}

form.myCRED-buy-form .button {
    width: 100%;
    max-width: 250px;
}


/* --- Styles for Tablets and Desktops --- */
@media (min-width: 600px) {
    .points-container {
        flex-direction: row; /* Side-by-side on larger screens */
        justify-content: space-around;
        align-items: stretch;
    }

    .points-option {
        width: 30%; /* Distribute space between the three boxes */
    }
}




li.menu-item.menu-item-type-post_type.menu-item-object-page.page_item.page-item-2249.menu-item-2257.current-menu-item {
    background-color: tan;
    font-weight: bold;
    color: white;
		margin-right: 10px;
}




 /*
          This CSS block styles the container and the button generated by the shortcode.
        */

        /* The main container for the purchase section */
        .purchase-chapter-container {
            text-align: center; /* Centers the content horizontally */
            padding: 30px; /* Adds space inside the container */
            border-radius: 12px; /* Rounds the corners of the container */
            background-color: #f9f9f9; /* A light grey background color */
            border: 1px solid #e0e0e0; /* A subtle border */
            max-width: 400px; /* Sets a maximum width for the container */
            margin: 40px auto; /* Centers the container on the page with space above and below */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Adds a soft shadow for a "lifted" effect */
            font-family: sans-serif; /* A clean, modern font for all text inside */
        }

        /* The heading text "Click Below to Get Access" */
        .purchase-chapter-container h3 {
            margin-bottom: 20px; /* Adds space below the heading */
            font-size: 1.6em; /* Makes the font size larger */
            font-weight: 600; /* Makes the font slightly bolder */
            color: #333; /* A dark grey color for the text */
        }

        /*
         * This targets the button generated by the shortcode.
         * It uses the class from your original example.
         * You may need to adjust the class name if your shortcode generates a different one.
        */
        .mycred-buy-this-content-button {
            padding: 15px 35px !important; /* Use !important to override default plugin styles if necessary */
            font-size: 1.25em !important;
            font-weight: 700 !important;
            border-radius: 50px !important;
            border: none !important;
            background: linear-gradient(45deg, #FFC107, #FF9800) !important;
            color: white !important;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            display: inline-flex;
            align-items: center;
            text-decoration: none; /* Removes underline if the button is an 'a' tag */
        }

        /* The hover effect for the button */
        .mycred-buy-this-content-button:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        /*
         * If your button shortcode includes an icon (like a span with a specific class),
         * you can style it. For example, if it adds <span class="coin-icon"></span>
        */
        .mycred-buy-this-content-button .coin-icon {
            display: inline-block;
            width: 24px;
            height: 24px;
            background-color: #FFEB3B;
            border-radius: 50%;
            margin-right: 12px;
            border: 2px solid #fff;
            box-shadow: 0 0 5px rgba(0,0,0,0.2);
        }



