/* Virtue Ascends PMA Frontend Styles */

/* Complianz Cookie Banner */
.cmplz-cookiebanner {
    background: #4B0082;
    color: #FFFFFF;
    border: 1px solid #FFD700;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    background: #FFD700;
    color: #4B0082;
    border-radius: 4px;
}
.cmplz-cookiebanner .cmplz-links a {
    color: #FFD700;
}

/* Form Styling */
.vapma-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.vapma-form-wrapper .error {
    color: #d00;
    font-weight: bold;
    margin-bottom: 15px;
}
.vapma-form-wrapper .success {
    color: #008000;
    font-weight: bold;
    margin-bottom: 15px;
}
.vapma-form-wrapper .form-group {
    margin-bottom: 15px;
}
.vapma-form-wrapper .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.vapma-form-wrapper input,
.vapma-form-wrapper textarea,
.vapma-form-wrapper select {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 5px;
    padding: 5px;
    color: #4e4e4e;
    font-family: 'ABeeZee', Helvetica, Arial, Lucida, sans-serif;
    font-size: 14px;
}
.vapma-form-wrapper .form-control:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.3);
}
.vapma-form-wrapper .et_pb_button.vapma-submit {
    background-color: transparent;
    color: #412461;
    font-family: 'ABeeZee', Helvetica, Arial, Lucida, sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: .3em 1em;
    border: 2px solid #662d91;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.vapma-form-wrapper .et_pb_button.vapma-submit:hover {
    background-color: #412461;
    color: #e9e9e9;
    border-color: #412461;
}

/* Login Modal */
.vapma-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.vapma-login-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
}
.vapma-login-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #412461;
}
.vapma-login-modal-close:hover {
    color: #662d91;
}

/* Dynamic Menu */
.vapma-dynamic-menu {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 2px solid #662d91;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.vapma-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.vapma-menu a {
    color: #412461;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.vapma-menu a:hover,
.vapma-menu .current-menu-item a {
    background: #662d91;
    color: #fff;
}
.vapma-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #412461;
}
@media (max-width: 767px) {
    .vapma-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .vapma-menu.active {
        display: flex;
    }
    .vapma-menu-toggle {
        display: block;
    }
}

/* Content Protection */
body {
    user-select: none;
}
.vapma-form-wrapper input,
.vapma-form-wrapper textarea,
.vapma-form-wrapper select,
.vapma-copyable {
    user-select: text;
}
.vapma-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-family: 'ABeeZee', Helvetica, Arial, Lucida, sans-serif;
    pointer-events: none;
}
.vapma-rare-image-warning {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
}