html,
body {
    height: 100%;
    margin: 0;
    background: #1c1f23;
    color: #e8e8e8;
    font-family: "Segoe UI", sans-serif;
}

.main-layout {
    display: flex;
    min-height: 100vh;
}

/* Left side */

.content-panel {
    flex: 2;
    padding: 50px;
    overflow-y: auto;
}

/* Right side */

.portrait-panel {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    background:
        linear-gradient(
            180deg,
            #272c33,
            #1b1f24
        );

    border-left: 1px solid #333;

    overflow: hidden;
}

.portrait {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
}

.user-avatar {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.list-group-item {
    transition: background .15s ease;
}

.list-group-item:hover {

    background: rgba(255,255,255,.05);

}

.font-monospace {
    font-size: .85rem;
}

.rounded-circle {
    object-fit: cover;
}

.live-alert-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;

    display: flex;
    flex-direction: column;

    margin-left: 100px;
    margin-right: 100px;
    margin-top: 100px;

    pointer-events: none; /* allows clicks through empty space */
}