/**
 * WP Tutorials : Random Post Button (WPTRPB)
 *
 * https://wp-tutorials.tech/add-functionality/random-post-button/
 */

button.random-post-button {
    padding: 9px 9px;
    /* width: 100%; */
    font-weight: normal;
    font-size: 11pt;
    background-color: #006ba1;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

[data-rpb-args] {
   /*
    * The button has to be relatively positioned so we
    * can use absolute positioning for the spinner.
    */
   position: relative;
}

[data-rpb-args] .wpt-spinner {
   width: 3em;
   height: 3em;
   position: absolute;
   right: 0.5em;
   top: 50%;
   transform: translateY(-50%);
   /* background-color:  white; */
   border-radius: 50%;
}