/*! Cravero Coaching Cascading Style Sheet
 * Copyright �2024 Cravero Coaching. All rights reserved.
 */

/* -----------------------------------------------------------
 * Application-specific stylesheet.
 *
 * Add your Cascading Style Sheet classes here and reference them in your HTML
 * elements within a class="" attribute. You can also modify bootstrap v5.1 classes
 * here, see https://getbootstrap.com/docs/5.1/getting-started/introduction/
 * as shown below where we change an accordion button.
 *-----------------------------------------------------------*/

/* example - make all accordion buttons red */
.accordion-button {
    /* background-color: red; /* remove the first slash-star characters here to make them red! */
}

/* example - create your own button style */
/* apply it by creating an object with class="my-button" (note that the button created by the application-specific client sample uses it) */
.my-button {
    background-color: antiquewhite;
    border: solid;
    border-color: grey;
    border-radius: 6pt;
}