body {
    background: #eee
}

.name {
    color: blue
}

.work {
    font-weight: bold;
    font-size: 15px
}

.about span {
    font-size: 13px
}

.v-profile {
    color: blue;
    cursor: pointer
}

.box {
    -webkit-box-shadow: 13px 12px 5px -10px rgba(196, 194, 196, 0.72);
    -moz-box-shadow: 13px 12px 5px -10px rgba(196, 194, 196, 0.72);
    box-shadow: 13px 12px 5px -10px rgba(196, 194, 196, 0.72)
}

.col-md-3 {
    margin-top: 10px
}


/*
============================================================
 GENERIC BUTTON STYLES FOR ALL OF WILD APRICOT
 Added by Chris Ferraro - 2025-09-02
============================================================
*/

/* This targets the most common Wild Apricot buttons,
   including form submissions, login, and the event buttons. */
.WaGadgetActionButton,
.typeButton,
input[type="submit"],
input[type="button"] {
    background-color: #007bff !important;  /* A solid blue background */
    color: #ffffff !important;             /* White text */
    border: 1px solid #007bff !important;   /* A matching border */
    padding: 10px 20px !important;         /* Makes the button larger */
    opacity: 1 !important;                 /* Ensures it's not transparent */
    border-radius: 4px !important;         /* Adds slightly rounded corners */
}

/* Style for the buttons when a user hovers over them */
.WaGadgetActionButton:hover,
.typeButton:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #0056b3 !important;  /* A darker blue on hover */
    border-color: #0056b3 !important;
    color: #ffffff !important;
    cursor: pointer !important;            /* Ensures the cursor is a pointer hand */
}