/* Custom styles to enhance BMOS aesthetic */
.btn-primary {
    background-color: #7066e0;
    border-color: #7066e0;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: #5a50c8;
    border-color: #5a50c8;
}
.alert-success {
    background-color: #a5dc86;
    border-color: #a5dc86;
    color: #212529;
}
.alert-danger {
    background-color: #f46a6a;
    border-color: #f46a6a;
    color: #fff;
}
.mini-stat {
    background: #7066e0;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}
.mini-stat:hover {
    transform: translateY(-5px);
}
.mini-stat .card-body {
    padding: 20px;
}
.mini-stat h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
}
.mini-stat h4 {
    font-size: 1.5rem;
    font-weight: 600;
}
.mini-stat-img i {
    font-size: 40px;
    color: #fff;
}
.table th, .table td {
    vertical-align: middle;
}
.badge.bg-success {
    background-color: #a5dc86 !important;
}
.badge.bg-warning {
    background-color: #f1b44c !important;
}
.badge.bg-primary {
    background-color: #7066e0 !important;
}
.ct-chart .ct-series-a .ct-area {
    fill: #7066e0;
    fill-opacity: 0.3;
}
.ct-chart .ct-series-a .ct-line {
    stroke: #7066e0;
    stroke-width: 2px;
}