/* 
 * Category Buttons
 * Used for the main navigation categories on the homepage and sidebars.
 */

/* Category button container */
.category-button-container {
    display: block;
    margin: 0;
    padding: 0;
}

/* Category button default state */
.category-button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    color: #000;
    background-color: #efe;
    border: 1px solid #000;
    border-bottom: none;
    text-decoration: none;
    text-align: left;
    box-sizing: border-box;
    font-size: 14px;
}

.category-button:last-child {
    border-bottom: 1px solid #000;
}

.category-button:hover {
    background-color: #ddd;
}

/* Category button active/selected state */
.category-button-active {
    background-color: #fff;
}

/* Category button label */
.category-label {
    display: block;
}

/* Category support label */
.category-support-label {
    font-size: 11.5px;
    margin-top: 10px;
    text-align: right;
}

/* Remove gutter padding from button grid columns */
.panel-primary .panel-body .row>[class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* Category panel heading and body spacing */
.panel-primary {
    margin-bottom: 5px 0;
}
