/* SIMPLE RULES THAT CAN BE APPLIED TO ANY ELEMENT */
/* These are often considered default by Hare Software */

/* basic styling classes */
.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

.no-margin {
    margin: 0 !important;
}

.hidden {
    display: none !important;
}

.inactive {
    color: var(--text-inactive);
}

.optional {
    color: var(--text-inactive);
}

.disabled {
    filter: brightness(0.75);
}

/* label for non-labels */
.small-header {
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.small-header.no-margin {
    margin-bottom: 0;
}

.prime-minister, .large.important {
    font-weight: bold;
    font-size: 2rem !important;
    font-family: var(--main-font), sans-serif;
    background-color: unset;
}

.prime-minister {
    color: var(--color_government);
}

.prime-minister.optional {
    color: var(--text-inactive)
}

/* divider */
.divider {
    width: 100%;
    height: 2px;
    background-color: var(--gray);
    margin-bottom: 1rem;
}

.sidebar .divider {
    margin-bottom: 0;
}

/* span */
.official, .basic-card .official {
    font-family: "Adamina", Times, serif; !important;
}

.large, .basic-card .large {
    font-weight: bold;
    font-size: 1.5rem;
}