
.grid-stack {
    background-color: #f5f5f5;
}

.grid-stack-item-content {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius:8px;
}

.grid-stack-item-header {
    background-color: #4274b2;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-weight: bold;
    font-size: 1.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .grid-stack-item-header .header-left {
        flex-grow: 1;
        text-align: left;
    }

    .grid-stack-item-header .header-right {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-right: 9px;
    }


.grid-stack-item-header-filters {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 10px 10px 10px;
    font-size: 0.9em;
    display: flex;
    gap: 10px;
    align-items: baseline;
}

    .grid-stack-item-header-filters input[type="text"].datepicker {
        width: 100px;
        padding-left: 30px !important;
    }

    .grid-stack-item-header-filters .date-field-wrapper .calendar-icon {
        position: absolute !important;
        top: 5px !important;
        left: 8px !important;
        color: #384A60 !important;
        cursor: pointer !important;
    }

.grid-stack-item-content h4 {
    text-align: center;
    margin-bottom: 10px;
}

.add-button {
    margin: 10px;
}

.remove-button {
    right: 50px;
}

.button-card {
    background-color: #ededed;
    z-index: 11;
}

.reload-button {
    right: 20px;
}

.selector-base {
    width: 250px;
}

.dashboard-loader {
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.canvasjs-chart-credit{
    display:none;
}

#widgetSelector-buttons {
    margin-left: 15px;
}

#widgetSelector {
    display: flex;
    align-items: center;
}

.widgetFilterContainer {
    display: flex;
    align-items: baseline;
    gap: 10px;
}