body {
    padding-bottom: 40px;
    background-color: #f8f9fa;
}

.font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.table th {
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.card {
    border-radius: 0.5rem;
}


/* Fix for native multi-select dropdown */
.custom-multi-select summary {
    list-style: none;
    cursor: pointer;
}

.custom-multi-select summary::-webkit-details-marker {
    display: none;
}

/* Ensure filter form container doesn't clip absolute dropdown popovers */
.card-body, form.row {
    overflow: visible !important;
}

.cursor-pointer {
    cursor: pointer;
}
/* Desktop Table - Rounded Floating Rectangle Rows */
.table-rounded-rows {
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}

    .table-rounded-rows tbody tr {
        background-color: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

        .table-rounded-rows tbody tr:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        /* Round outer left corners of each row */
        .table-rounded-rows tbody tr td:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            border-left: 1px solid #e9ecef;
        }

        /* Round outer right corners of each row */
        .table-rounded-rows tbody tr td:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            border-right: 1px solid #e9ecef;
        }

        /* Cell styling */
        .table-rounded-rows tbody tr td {
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            padding-top: 12px;
            padding-bottom: 12px;
        }

/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

/* ==========================================================================
   SoundMoney Brand (Wider Rupee Coin Logo & Lite Typography)
   ========================================================================== */

.brand-lens-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    transition: opacity 0.2s ease-in-out;
}

.brand-lens-wrapper:hover {
    text-decoration: none;
    opacity: 0.9;
}

 /*Rupee Coin Badge Container*/ 
.brand-coin-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    top:10px;
    bottom:10px;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 2px 6px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-lens-wrapper:hover .brand-coin-logo {
    transform: scale(1.08) rotate(10deg);
}

.rupee-coin-svg {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

/* Lite Brand Title Typography */
.brand-title {
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: white;
}