﻿#editIcon {
    position: absolute;
    font-size: 15px;
    line-height: 25px;
    bottom: 2px;
    right: -10px;
    background-color: #ffffff;
    border-radius: 50px;
    border: solid 1px #dee2e6;
    width: 30px;
    height: 30px;
    transition: all 0.1s ease-in-out;
}

a #editIcon {
    text-decoration: none;
    color: #000;
}

#editIcon:hover {
    border-color: #000;
    background-color: #dee2e6;
    animation: editIconAnimation 0.5s ease-in-out;
}

html[data-bs-theme="light"] #loggedInModal .modal-content, html[data-bs-theme="light"] #loggedOutModal .modal-content {
    background-color: rgba(255, 255, 255, 0.85);
}

html[data-bs-theme="dark"] #loggedInModal .modal-content, html[data-bs-theme="dark"] #loggedOutModal .modal-content {
    background-color: rgba(0, 0, 0, 0.85);
}

.subscription-warning-banner{
    padding: 0px;
    border-radius: 0px;
    height: 30px;
}

.subscription-warning-divider {
    padding: 3px;
}

html[data-bs-theme="light"] .subscription-warning-divider {
    background: #e6e6e6;
}

html[data-bs-theme="dark"] .subscription-warning-divider {
    background: #121416;
}