    /* Use unique name for the card for each different card style used on a page */
    .cardcustom {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        border-radius: 5px;
        /* 5px rounded corners */
        border: 8px solid white;
        background-color: rgb(232, 232, 232);
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }