﻿.dashboard-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    gap: 0.5rem;
    padding: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;
}

/*add this to avoid flickering*/
.dropzone-dd-inprogess > * {
    pointer-events: none;
}

/*dropzone style style*/
.dropzone-dd-dropzone {
    min-height: 50px;
}

/*drag drop styles*/

.dropzone-dd-spacing {
    height: 10px;
}

.dropzone-dd-spacing-dragged-over {
    padding: 25px;
}

.dropzone-dd-dragged-over {
    background-color: lightgray;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

    .dropzone-dd-dragged-over > div {
        background-color: lightgray;
        opacity: 0.6;
        animation: blinker 1s linear infinite;
    }

.dropzone-dd-dragged-over-denied {
    background-color: red;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

.dropzone-dd-in-transit {
    opacity: 1;
}

    .dropzone-dd-in-transit > div {
        opacity: 1;
    }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink_me {
    animation: blinker 1s linear infinite;
}

/*for flex demo*/

.dropzone-flex .dropzone-dd-spacing {
    width: 20px;
    height: auto;
}

.dropzone-flex .dropzone-dd-dragged-over {
    background-color: lightgray;
    opacity: 0.6;
    animation: blinker 1s linear infinite;
}

    .dropzone-flex .dropzone-dd-dragged-over > div {
        background-color: lightgray;
        opacity: 0.9;
        animation: blinker 1s linear infinite;
    }

.dropzone-flex .dropzone-dd-in-transit {
    background-color: orangered;
}

    .dropzone-flex .dropzone-dd-in-transit > div {
        background-color: orangered;
    }

.dropzone-dd-noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}