.main--panel {
    background-color: var(--background-highlight-color);
    border-right: 1px solid var(--background-neutral-color);
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 35vw;
    min-width: 15rem;
    max-width: 20rem;
    overflow: hidden;
}
/* Agents Container */
.agents-header--container {
    justify-content: space-between;
    height: 4.5vh;
    padding: 0.5rem;
}
.agents-header--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.agents--title-text {
    padding-left: 15px;
}
.agents--container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    height: 100%;
    padding: 0.5rem;
}
.agent--container.loading {
    position: relative;
}
.agent--container.loading > *:not(.loading-wrapper) {
    filter: blur(2px);
}
.loading-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.agent--container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.agent--container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
    z-index: 0;
    animation: glistening 2.5s infinite;
    background-size: 400% 100%;
    border-radius: 5px;
}
@keyframes glistening {
    0% {
        background-position: -200% -200%;
    }
    100% {
        background-position: 200% 200%;
    }
}
.agent-options--button {
    background-color: inherit;
    color: var(--stroke-neutral-color);
    border: none;
    border-radius: 5px;
    width: 25px;
    height: 51px;
    font-size: 19px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.2rem;
}
.agent-options--button:hover {
    font-size: 20px;
}
.agent--container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: left;
    cursor: pointer;
    margin-bottom: 1px;
}
.highlight, .selected, .active {
    background-color: var(--background-neutral-color);
    border-radius: 5px;
    outline: 1px solid var(--stroke-neutral-color);
}
.agent-title--container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem;
}
.agent--options{
    align-items: center;
}
.add-agent-button {
    background-color: var(--background-highlight-color);
    color: var(--text-light-color);
    border: none;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
}
.add-agent-button:hover {
    background-color: var(--background-neutral-color);
    outline: 1px solid var(--stroke-neutral-color);
}

.dropdown-container {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    z-index: -1;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--background-neutral-color);
    color: var(--text-light-color);
    outline: 1px solid var(--stroke-neutral-color);
    border-radius: 50%;
    z-index: 1;
}
.dropdown-menu a {
    color: var(--text-light-color);
    padding: 8px 16px;
    display: block;
}

/* Settings Container */
.settings--container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    padding: 1rem;
}
.settings-button {
    background-color: inherit;
    color: var(--stroke-neutral-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.settings-button:hover {
    background-color: var(--background-neutral-color);
    outline: 1px solid var(--stroke-neutral-color);
}
.settings-icon {
    width: 24px;
    height: 24px;
    display: block;
}