﻿.dashboard-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    gap: 0.5rem;
}

.dashboard-container-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    max-width: 500px;
    text-align: center;
    justify-content: center;
    flex: 1;
    gap: 2rem;
    padding: 1rem;
}

    .dashboard-container-empty .company-logo {
        width: 200px;
    }

    .dashboard-container-empty .shortcut-info {
    }

    .dashboard-container-empty .shortcut-button {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .dashboard-container-empty .company-info > a {
        color: white;
    }

.dashboard-edit-actions {
    text-align: center;
    display: flex;
    position: fixed;
    justify-content: center;
    top: 0;
    z-index: 1;
    gap: 10px;
    width: 100%;
    box-shadow: var(--rz-shadow-7);
}

.dashboard-edit-action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.dashboard-container-filled {
}

.widget-group-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.widget-group-container-edit {
    padding: 0.5rem;
    border-radius: 5px;
    border:1px dashed gray;
}

.widget-group-header {
    padding:0.5rem;
}
    .widget-group-header > h1{
        margin-bottom:0px;
    }

    .widget-group-header > input {
        font-size: var(--rz-text-h4-font-size);
        border:none;
        background-color:unset;
    }
    

    .widget-group-widgets {
    }

    .widget-group-widgets .shortcut-button {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        padding:0.5rem;
    }

.widgetsearch-list {
    border: unset;
    min-height:400px;
    overflow: auto;
    overflow-x: hidden;
    min-width: 500px;
}

.widgetsearch-list-item {
    min-height: 40px;
    display: flex;
    gap: 10px;
    max-width: 600px;
    min-width: 500px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

    .widgetsearch-list-item .imagecontainer {
        background-color: var(--rz-base-300);
        text-align: center;
        border-radius: 4px;
    }

        .widgetsearch-list-item .imagecontainer .image {
            height: 40px;
            margin: 0;
            text-align: center;
            width: 40px;
        }

.widgetsearch-list-item-left, .widgetsearch-list-item-right {
    display: flex;
    gap:10px;
    align-items:center;
}
    .widgetsearch-list-item-right .toglebutton, .widgetsearch-list-item-right .splitbutton {
        width: 120px;
    }

    .rz-multiselect-item {
        border-bottom: var(--rz-border-base-300);
    }

.dialog-footer {
    padding-top: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: end;
}

    .dialog-footer > button {
        min-height: 40px;
        min-width: 120px;
    }

.widget-editmode-button {
    height: 20px;
    width: 20px;
    border-radius: 20px;
}
.widget-editmode-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display:flex;
    flex-direction:column;
    gap:10px;
}