/* Ported from the Angular app's global src/styles.css - the general
   body/typography/card rules that customer-support screens rely on (as
   opposed to app-shell.css, which is scoped to the sidebar/nav shell). */

body {
    font-family: 'Titillium Web', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background-color: #EFF2F8;
    color: #0D1B2A;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
}

h3,
h4 {
    color: #0D1B2A;
}

h3,
.h3 {
    font-size: 1.5rem;
}

.clickable {
    cursor: pointer;
}

/*------linked entity sets-------*/
.entity-set {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 2px 0 rgba(0, 0, 0, .05);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem !important;
    color: #8D9BB7;
}

.entity-set:before {
    content: '';
    width: 100%;
    height: .5rem;
    top: 0;
    left: 0;
    background: #D4DCEB;
    display: block;
    position: absolute;
}

.entity-set label {
    color: #424242 !important;
}

/* AdminLTE-style box header/tools, used by entity-set sections that have
   their own heading + action buttons (e.g. Manage Owner's Subscription
   Details, Billing Information). box-header needs position: relative so
   box-tools' position: absolute lands in its top-right corner instead of
   flowing below the content, matching the Angular app's global styles.css. */
.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}

.box-header.with-border {
    border-bottom: 1px solid #f4f4f4;
}

.box-header > .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

.blue-link {
    color: #0000ff;
    text-decoration: underline;
}
