html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial;
    background: #0f172a;
}

#app {
    width: 100%;
    height: 100%;
}

.dashboard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.toolbar {
    height: 48px;
    background: #111827;
    border-bottom: 1px solid #29303d;
}

.dashboard-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.client-area-wrapper {
    flex: 1;
    overflow: auto;
    background: #111827;
}

/*.client-area {
    position: relative;
    width: fit-content;
    height: fit-content;
}*/
/*.client-area {
    position: relative;
    width: 100%;
    height: 100%;
}*/

.client-area {
    position: relative;
    width: fit-content;
    height: fit-content;
    min-width: 100%;
    min-height: 100%;
}

.background-image {
    display: block;
    width: auto;
    height: auto;
    z-index: 1;
}

.device-card {
    position: absolute;
    width: 240px;
    background: #111827;
    border: 1px solid #38bdf8;
    border-radius: 8px;
    padding: 12px;
    color: white;
    cursor: move;
    user-select: none;
}

.device-card-title {
    font-size: 14px;
    margin-bottom: 8px;
}

.device-card-id {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 10px;
}

.device-prop {
    display: flex;
    justify-content: space-between;
    background: #10243B;
    border: 1px solid #ffffff22;
    border-radius: 5px;
    padding: 6px;
    margin-bottom: 6px;
    font-size: 12px;
}