body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgba(190, 251, 255, 0.5), rgba(126, 201, 248, 0.5));
    color: #333;
}

#baseline
{
max-width: 500px;
margin: 0 auto;
}

#soundwave {
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    min-height: 500px;
}

#soundwave::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="blue" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-wifi"><path d="M5 12.55a11 11 0 0 1 14.08 0"></path><path d="M1.42 9a16 16 0 0 1 21.16 0"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12" y2="20"></line></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top center;
    animation: pulse-opacity 2s infinite;
    animation: pulse 2s infinite;
    opacity: 0.1;
}

@keyframes pulse-opacity {
    0% {opacity: 0.025;}
    50% {opacity: 0.05;}
    100% {opacity: 0.025;}
}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
footer {
    z-index: 0;
    position: relative;
    margin-top: auto;
}

.aithercastlogo
{
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .aithercastlogo
    {
        max-width: 300px;
    }

#baseline
{
max-width: 300px;
margin: 0 auto;

}
    
}


@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
}


.text-anim {
    padding: 10px;

    white-space: pre-wrap; 
    display: inline-block;
}

button {
    transition: transform 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.1);
}

.btn {
    background-color: #4CAF50; /* Green background */
    margin-left:50px !important;
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 10px 20px; /* Some padding */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Display as inline-block */
    font-size: 16px; /* Change default font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 4px; /* Rounded corners */
    transition-duration: 0.4s; /* 0.4 second transition */
}

.btn:hover {
    background-color: #45a049; /* Green background on hover */
    color: white; /* White text on hover */
}

/* Hide the default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Position the custom checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #cccccc;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


#PaddleModal {
    /* Existing rules */
    padding:20px !important;

    /* New rules for centering the modal */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.modal-wrapper

{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 800px;
    margin: 0 auto;
    max-height: 100vh;
    overflow-y: auto;
}


.payment-modal-close {
    z-index: 51; /* or any number greater than 50 */
}

@media screen and (max-width: 600px) {
    #PaddleModal {
        padding: 10px !important;
        width: 100%;
    }

    .modal-wrapper

    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-height: 100vh;
        margin: 0 auto;
        overflow-y: auto;
    }


}


.sub-btn {
    background-color: #26a69a !important;
    color: white;
    line-height: normal;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 350px !important;
}


.sub-btn:hover {
    background-color: green !important;
    color: white !important;
    line-height: normal;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 350px !important;
}

.payment-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 50vh;
}

.packs-column-direction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-close-button {
    position: absolute !important;
    top: 10px;
    right: 10px;
}

.paymentinfo
{
margin-top:10px;
margin-bottom:10px;
font-size: 0.75em;
max-width: 500px;
}

.paymentheader {
   font-size: 25px !important;
   text-align: center !important;
   margin-bottom: 0px;
   font-weight: 600 !important;
   color: #2196F3 !important;
}

.paymentsubheader {
   font-size: 14px !important;
   font-weight: 400 !important;
   color: black !important;
}

.selected {
   background-color: rgba(0, 0, 255, 0.664) !important;
}

#paddle-container
{
margin-top:20px;
border: solid 1px darkgrey;
max-height: 1000px;
overflow-y: auto;

}


#payment_amount
{
margin-top:10px;
padding:10px;
font-size: 0.75em;
background-color: lightblue;
border: solid 1px darkgrey;
}

#subscriptionMessage
{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#cookie-toast {
    font-size: 0.9em;
    position: fixed;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%; /* full width on mobile */
    /* rest of your styles */
}

@media (min-width: 768px) { /* adjust this value based on your needs */
    #cookie-toast {
        max-width: 500px; /* not full width on desktop */
        margin: 0 auto; /* center it */
    }
}
