body {
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.header-container {
    min-height: 50px;
    border: 1px solid transparent;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 999;
    background-color: #1273ad;
    border-width: 0 0 1px;
}

.main-container {
    min-height: 100vh;
    display: flex;
}

.side-bar-container {
    width: 185px;
    background-color: #1273ad;
    margin: 50px 0px 0px 0px;
    padding: 8px 5px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
}

#react-app-root {
    flex: 1;
    background: white;
    padding: 10px 10px 10px 10px;
    margin: 60px 10px 10px 10px;
    box-sizing: border-box;
}

.logo-container {
    width: 185px;
    background-color: white;
    height: 51px;
}

.opco-logo-img {
    width: 100%;
    height: 40px;
    margin-top: 5px;
}

@media screen and (max-width: 820px) {
    .logo-container {
        width: 100%;
    }

    .opco-logo-img {
        width: auto;
        height: 40px;
    }

    .side-bar-container {
        position: absolute;
        height: 94%;
    }
}

.menu-icon {
    position: absolute;
    right: -10px;
    top: 2px;
    height: 91%;
    cursor: pointer;
}

ul,
#wcList {
    color: #063f61;
    font-size: 15px;
    font-family: inherit;
    padding-bottom: 2px;
}

#wcList {
    margin: 0;
    padding: 0;
}

#wcList a {
    margin: 0;
    padding: 0;
    color: #063f61;
    text-decoration: none;
}

.content {
    display: block;
    background: white;
    padding: 8px 5px;
    margin-top: 2px;
}

.caret {
    cursor: pointer;
    user-select: none;
}

.caret::before {
    content: '\25B6';
    color: #063f61;
    display: inline-block;
}

.caret-down::before {
    transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block;
    background-color: white;
}

#wcList li.active span {
    background-color: aliceblue;
}

#wcList li {
    margin-bottom: 10px;
}

#wcList .disabled {
    background-color: #b4b4b4;
    cursor: not-allowed;
}

#wcList .nested li {
    margin-bottom: 3px;
}

#wcList li.active a,
#wcList li.active .caret::before {}

#wcList a:hover {
    background-color: #063f61;
    color: white;
    padding: 1px 2px;
}

.event-name {
    font-size: 10px;
    font-weight: bold;
    color: green;
    margin: 2px 0;
}

#btnDispatchTokenRefreshedEvent,
#btnDispatchLogoutEvent {
    margin: 5px 0;
    width: 80px;
    padding: 5px;
}

#btnDispatchLogoutEvent {
    border: 1px solid #fff;
    background-color: orangered;
    color: #fff;
    cursor: pointer;
}

#txtToken {
    width: 95%;
}

@media screen and (min-width: 0px) and (max-width: 1023px) {
    .side-bar-container {
        display: none;
    }
}