﻿/*menu*/
span.menu-title{
    color:#000000;
}
/*header*/

#kt_app_header{
    background-color:cornflowerblue;
}
/*button*/

.btn.btn-custom-1{
    background-color:cornflowerblue;
    color:whitesmoke;
    border-radius:10px;
    padding:5px;
}
    .btn.btn-custom-1:active {
        background-color: #5185e0;
        color: whitesmoke;
    }
    .btn.btn-custom-1:hover {
        background-color: #5185e0;
        color: whitesmoke;
    }

.btn.btn-custom-2 {
    border-width:1px !important;
    border-color:cornflowerblue !important;
    border-style: solid !important;
}


.switch-container {
    display: flex;
    align-items: center;
}

.switch {
    display: none;
}

.switch-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 120px;
    height: 40px;
    background-color: #808080;
    border-radius: 20px;
    position: relative;
    transition: background-color 0.3s;
}

.switch-handle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 60px;
    height: 34px;
    background-color: #ffffff;
    border-radius: 17px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.switch-text {
    font-weight: 500;
    user-select: none;
    transition: color 0.3s;
    font-size: 14px;
    color: #7e8299;
}

.switch:checked + .switch-label {
    background-color: #6495ED;
}

    .switch:checked + .switch-label .switch-handle {
        transform: translateX(52px);
        background-color: #ffffff;
    }

        .switch:checked + .switch-label .switch-handle .switch-text {
            color: #6495ED;
        }

