/*
Copyright (C) 2024 Aeonsoft
www.aeonsoft.it
All rights reserved.
*/
/* 
    Created on : Feb 8, 2025, 12:37:30 PM
    Author     : ramon
*/

.user-avatar {
    /*padding: 2px;*/
}

.user-avatar img {
    border-radius: 50%;
    object-fit: cover;
    border-style: none;
    width: 50px;
    height: 50px;
    background-color: #dddddd;
}

/********************************************************************************************/
/* Dashboard */
/********************************************************************************************/

.dashboard-panel {
    margin-bottom: 20px;
}

.dashboard-panel .card-header {
    padding: 8px 10px;
    height: 117px;
}

.card.bg-primary.dashboard-panel .card-header {
    color: white;
}

.dashboard-panel-title,
.dashboard-panel-title a {
    color: white;
    height: 52px;
}

/********************************************************************************************/

.select-dropdown .dropdown-menu > li:nth-child(odd) {
}

.select-dropdown .dropdown-menu > li:nth-child(even) {
    background: #f9f9f9;
}
.select-dropdown .dropdown-menu > li>a:hover {
    background: #ddeeff;
}

/********************************************************************************************/
/* Dropdown Menu */
/********************************************************************************************/

.dropdown-menu .search-input {
    background: #f1f1f1;
    color: blue;
    padding: .25rem 1.5rem;
    border: 0;
    border-radius: 0;
    width: 100%;
}

.dropdown-divider {
    margin: 2px 0;
}

.dropdown-menu>a,
.dropdown-submenu>a {
    padding: 1px 20px;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 1px;
    -webkit-border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px;
    border-radius: 6px 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.custom-select-dark-theme {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center / 8px 10px;
}


/********************************************************************************************/

nav.cms-pagination h6{
    margin-top: .5rem;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default.active, .btn-default:active {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}


.form-group-sm .control-label,
.dropdown-sm .btn,
.dropdown-sm .dropdown-menu,
.form-group-sm .dropdown .btn,
.form-group-sm .dropdown-menu,
.form-group-sm .form-control-plaintext,
.form-sm .form-control-plaintext{
    padding-top: calc(.25rem);
    padding-bottom: calc(.25rem);
    font-size: .875rem;
    line-height: 1.5;
}

.form-group-lg .control-label,
.dropdown-lg .btn,
.dropdown-lg .dropdown-menu,
.form-group-lg .dropdown .btn,
.form-group-lg .dropdown-menu,
.form-group-lg .form-control-plaintext,
.form-lg .form-control-plaintext {
    padding-top: calc(.5rem);
    padding-bottom: calc(.5rem);
    font-size: 1.25rem;
    line-height: 1.5;
}

