body {
    background: var(--page-background-color);
}

.card {
    box-shadow: 0 1px 2px 0 rgba(33, 33, 33, 0.14), 0 0 1px 0 rgba(0, 0, 0, 0.14);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 0px solid transparent;
    position: relative;
    width: 100%;
    background: var(--white-color);
    margin: 20px 0;
}

.card-header,
.card-body {
    background: transparent;
    border-radius: 0px;
    border-bottom: 0px;
    padding: 16px 16px 7px 20px;
    position: relative;
}

.btn-lg {
    padding: 0px 12px;
    color: var(--white-color);
    background-color: var(--theme-color);
    font-size: var(--paragraph-font);
    line-height: var(--paragraph-font);
    min-height: 35px;
    min-width: 35px;
    font-weight: 500;
    letter-spacing: -0.011em;
    border: 1px solid var(--theme-color);
    border-bottom: 1px solid var(--border-secondary-color);
    border-radius: 3px;
    cursor: pointer;
}

.copyright {
    margin-top: 10px;
    border-top: 1px solid var(--copyright-border-color);
}

.dropdown-menu {
    position: absolute;
    display: none;
    float: left;
    right: 0;
    list-style: none;
    text-shadow: none;
    width: 180px;
    box-shadow: rgba(15, 15, 15, 0.05) 0px 0px 0px 1px, rgba(15, 15, 15, 0.1) 0px 3px 6px, rgba(15, 15, 15, 0.2) 0px 9px 24px;
    border: none;
    padding-top: 4px;
    padding-bottom: 8px;
    border-radius: 3px;
    font-size: 13px;
    margin: 0;
    background: #fff;
    min-width: initial;
    z-index: 700 !important;
    margin-top: 10px;
    transform: translate(0px, 34px);
    inset-block-start: 0;
}
.dropdown-menu.show {
    display: block;
}
a.dropdown-item {
    line-height: 20px;
    color: var(--text-color);
    padding: 4px 8px 4px 16px;
    border-radius: 3px;
    display: block;
    clear: both;
    white-space: nowrap;
    text-align: left;
}
.dropdown {
    position: relative;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.175);
    opacity: 1;
}

.profile-dropdown:after {
    position: absolute;
    top: -6px;
    right: 9px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: "";
}

section.saved-article {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}
section.saved-article .category {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #2a2a2a;
}
section.saved-article .title {
    font-weight: 600;
    color: #494343;
    font-size: 1rem;
}
section.saved-article .author {
    color: #595959;
    margin-top: 4px;
    font-size: 14px;

}
section.saved-article .remove-article {
    position: absolute;
    right: 10px;
    top: 20px;
    bottom: 0;
    cursor: pointer;
}
section.saved-article .remove-article > svg {
    width: 22px;
    height: 22px;
}
section.saved-article .detail {
    margin-right: 22px;
}

