 .wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
        background: linear-gradient(to right, #4e54c8, #8f94fb);
        font-family: 'Arial', sans-serif;
        padding: 20px;
        box-sizing: border-box;
    }
    .pwcp-clear-generated-codes {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        text-align: center;
        max-width: 500px;
        width: 100%;
    }
    .pwcp-page-title {
        font-size: 24px;
        color: #333;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .pwcp-description {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
    }
    .pwcp-clear-codes-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pwcp-form-group {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    .pwcp-form-group input[type="checkbox"] {
        margin-right: 10px;
    }
    .pwcp-form-group label {
        font-size: 14px;
        color: #333;
    }
    .pwcp-button-primary {
        background-color: #0073aa;
        border: none;
        border-radius: 5px;
        color: #fff;
        font-size: 16px;
        padding: 10px 20px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: inline-block;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
     .pwcp-button-primary:hover {
            background-color: #005177;
            transform: translateY(-2px);
        }
        .pwcp-clear-codes-success {
            background-color: #dff0d8;
            border-color: #d6e9c6;
            color: #3c763d;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin: 10px 0;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }