﻿
#kt_aside.myTheme {
    /*background: linear-gradient(100deg, #e2eefc, var(--bs-aside-bg-color));*/
   /* background: #e2eefc;*/
}

#kt_body.myTheme {
    background: #FFF3EB;
}

@media only screen and (min-width: 800px) {
    #kt_aside.myTheme {
        /*box-shadow: 1px 1px 1px #888888;*/
    }
}

.custom-border-primary .form-control:focus,
.custom-border-primary .form-select:focus {
    border-color: var(--bs-primary); /* Use primary color */
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25); /* Use primary color shadow */
}

.custom-border-primary .form-control,
.custom-border-primary .form-select {
    border: 2px solid var(--bs-primary); /* Use primary color for border */
}

.custom-bcb-primary {
    border: 2px solid var(--bs-primary); /* Warna border sesuaikan dengan warna yang Anda inginkan */
    border-radius: 3px; /* Opsional: menambahkan sudut bulat pada border */
}

.form-floating-with-border {
    border: 1px solid var(--bs-success); /* Sesuaikan dengan warna text-success */
    border-radius: 8px; /* Atur sesuai dengan keinginan Anda */
}

.notification-icon {
    position: relative;
    display: inline-block;
}

.notification-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 10px;
}


/* Media query untuk tampilan mobile */
@media (max-width: 768px) {
    .divnotification-icon {
        float: right;
        margin-right: 10px;
    }
}