.app-card-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    width: 100%;
}

.app-card {
    box-sizing: border-box;
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: 6px;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
    margin: 10px;
    aspect-ratio: 2/1.10;
    min-width: 25rem;
}

.app-card-small {
    box-sizing: border-box;
    background-color: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: 6px;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px;
    margin: 10px;
    width: 20rem;
    min-height: 8rem;
}

.app-card-fixed-aspect {
    aspect-ratio: 2/1.10;
}

.app-card-title {
    box-sizing: border-box;
    background-color: var(--brand-color);
    color: var(--color-on-brand);
    border-radius: 6px 6px 0px 0px;
    border-collapse: collapse;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px 5px 5px 5px;
    width: 100%;
}

.app-card-content {
    box-sizing: border-box;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    padding: 0px 0px 0px 0px;
    width: 100%;
}

.app-card-content-border {
    border-radius: 0px 0px 0px 0px;
    border-collapse: collapse;
}


.app-card-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 5px 5px 5px 5px;
}

.app-card-footer {
    box-sizing: border-box;
    background-color: white;
    border-top: 1px solid var(--brand-color);
    border-radius: 0px 0px 6px 6px;
    color: var(--brand-color);
    padding: 0px 5px 1px 5px;
    width: 100%;
}

    .app-card-footer a {
        color: var(--brand-color);
    }

.app-executive-card {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 300px;
}

.app-executive-card-container {
    height: 80%;
    width: 80%;
    overflow: hidden;
    margin-left: 5px;
    margin-right: 5px;
}

.app-executive-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--app-background-color-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: var(--app-contact-card-width, 300px);
    max-width: var(--app-container-width, 300px);
    min-width: 300px;
    gap: 10px;
}

    .app-contact-card a {
        text-decoration: none;
        color: var(--app-brand-link-color, black);
    }
    /*.app-contact-card .icon {
    align-items: flex-start;
    margin: 0 40px auto 0;
}

.app-contact-card .icon {
    align-items: center;
    margin: 0 40px auto 0;
}
*/
    .app-card-link {
    }

    .app-card-link,
    .app-card-link:visited,
    .app-card-link:hover,
    .app-card-link:active,
    .app-card-link:focus {
        text-decoration: none;
        color: var(--app-brand-link-color, black);
    }


.app-quick-action-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    gap: 10px;
}
.app-quick-action-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 0.5rem;
    background-color: var(--app-background-color-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 280px;
    height: 100px;
}
.app-quick-action-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}
