#p4k-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#p4k-popup {
    background: white;
    border-radius: 8px;
    padding: 20px;
    width: 550px; /* Increased width for the popup */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* text-align: center; */
    font-family: Arial, sans-serif;
	overflow: hidden;
}

#p4k-popup h2 {
    font-size: 36px;
    font-weight: bold;
    color: #432C81;
	text-align: center;
    margin-bottom: 20px;
}

#p4k-popup p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

#p4k-popup p strong,
#p4k-popup p b {
    font-weight: bold;
}

.alignleft {
    float: left;
    margin-right: 15px; /* Adds space between the image and the text */
    margin-bottom: 15px; /* Optional: Adds space below the image */
    display: inline; /* Ensure the image does not behave like a block */
}

.button-container {
    clear: both; /* Ensures buttons appear below floated elements */
    margin-top: 10px; /* Adds spacing if needed */
}

.p4k-popup-button {
    display: block; /* Ensure buttons span full width */
    padding: 15px 25px; /* Increased padding for better readability */
    font-size: 16px; /* Increased font size */
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    width: 100%; /* Full width for better alignment */
    max-width: 350px; /* Increased max-width for larger buttons */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.p4k-primary-button {
    background: #00AEEF;
    color: white;
    border: none;
    text-decoration: none;
}

.p4k-primary-button:hover {
    background: #432C81;
    color: white; /* Ensure text remains white on hover */
}

.p4k-secondary-button {
    background: white;
    color: gray;
    border: 1px solid gray;
}

.p4k-secondary-button:hover {
    color: black;
    border-color: black;
}

.p4k-optional-button {
    background: #6C63FF;
    color: white;
    border: none;
    text-decoration: none;
}

.p4k-optional-button:hover {
    background: #4D47C4;
    color: white;
}