@import url('./core.css');

body {
    padding-right: 20px;
    padding-bottom: 20px;
}

.text-start {
    text-align: start;
}

.view-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.view-container h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin-left: auto;
}

.button-container button {
    background-color: var(--box-color);
    border: 1px solid var(--border);
    color: var(--text-color);
    border-radius: 10px;
    padding: 7.5px 20px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all ease .3s;
    min-width: 100px;
}

.button-container button:hover {
    background-color: var(--button-hover);
}
.button-container button:active {
    background-color: var(--button-press);
}

.queue-wallboard {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 5px 10px 10px 0 var(--shadow);
}

.agent-wallboard {
    display: flex;
    flex-direction: row;
    color: var(--text-color);
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.header, .queue {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 40px;
    background-color: var(--bg-color);
    transition: all ease .3s;
    padding: 0 15px;
    border-bottom: 0.5px solid var(--border);
}

.header {
    padding-top: 15px;
}

.alt-row {
    background-color: var(--alt-row) !important;
}

.header h2 {
    flex: 1;
    font-size: 20px;
}

.value-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-container h3 {
    text-align: start;
    font-size: 14px;
    font-weight: 500;
}

.value-container span {
    font-size: 14px;
}

.warn {
    background-color: #ffef80;
}

.alert {
    background-color: #ff8080;
}

.warn, .alert {
    font-weight: 500;
}

.agent {
    display: flex;
    flex-direction: row;
    background-color: var(--box-color);
    border-radius: 10px;
    min-width: 225px;
    padding: 10px;
    gap: 15px;
    transition: all ease .3s;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 5px 10px 10px 0 var(--shadow);
}

.agent .icon {
    width: 50px;
    height: 50px;
    background-color: var(--glow);
    border-radius: 50%;
    transition: all ease .3s;
    overflow: hidden;
}

.agent .icon svg {
    margin-top: 1px;
    transition: all ease .3s;
}

.agent .icon .status {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    bottom: 10px;
    right: 182.5px;
    position: absolute;
    z-index: 100;
}

.agent .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: start;
    gap: 2px;
}

.agent .details h2 {
    font-size: 20px;
    font-weight: 500;
}

.agent .details p {
    font-size: 14px;
    font-weight: 300;
}