﻿body {
    background-color: #f8f9fa;
}

h4 {
    font-weight: 700 !important;
    font-size: 1.875rem !important;
}

.mud-breadcrumbs {
    padding: 16px 1px;
    font-size: 13px;
}

.blurred-background {
    backdrop-filter: blur(10px);
}

.rounded-icons {
    border-radius: 50% !important;
    background-color: rgb(237, 242, 255);
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: none;
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    color: #2962FF;
    width: 64px;
    height: 64px;
}

.footer-fixed-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1100; /* or higher if you need it to appear above other elements */
}


.selected-card {
    border: 2px solid #1976D2 !important; /* Highlighted border */
    background-color: rgba(25, 118, 210, 0.1); /* Light blue background */
    transition: all 0.3s ease-in-out;
}

.deselected-card {
    opacity: 0.7; /* Makes non-selected cards slightly faded */
    transition: all 0.3s ease-in-out;
}