/* Backend Styles */
.pa-admin-page .pa-heading {
    color: #01A0DB;
}

.pa-admin-page .pa-button {
    background-color: #01A0DB;
    border-color: #01A0DB;
    color: #fff;
}

.pa-admin-page .pa-button:hover {
    background-color: #0084C4;
    border-color: #0084C4;
}

/* Frontend Styles */
.pa-frontend-form label {
    display: block;
    margin-bottom: 10px;
    color: #01A0DB;
}

.pa-frontend-form input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pa-frontend-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pa-frontend-form .pa-button {
    background-color: #01A0DB;
    border-color: #01A0DB;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pa-frontend-form .pa-button:hover {
    background-color: #0084C4;
    border-color: #0084C4;
}

.pa-success-message {
    color: #01A101;
    font-weight: 600;
    
}

.pa-error-message {
    color: #FF0000;
}


/* Style for the popup */
.pa-popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
}

/* Popup content */
.pa-popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    border-radius: 5px;
    position: relative;
}

/* Close button */
.pa-popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.pa-popup-close:hover,
.pa-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

