        .box_title {
            background-color: #000;
            background-image: url('/img/new/cs2cs.png'), url('/img/new/cs2b.png'), linear-gradient(to right, #050505, rgba(5, 5, 5, 0.8), #050505);
            background-repeat: no-repeat, no-repeat, no-repeat;
            background-position: 10px center, calc(100% - 3px) center, center;
            background-size: 30px 30px, 30px 30px, cover;
            border: 1px solid rgba(10, 10, 10, 0.5);
            border-bottom: 0;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            text-align: center;
            position: relative;
            height: 40px; /* Adjust height to better fit the images */
        }
        .box {
            margin-bottom: 20px;
            color: #777;
            overflow: hidden;
            border-radius: 10px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
        }
        h3.box-title {
            color: rgba(240, 20, 0);
            text-shadow: 0 1px 1px #000;
            padding: 10px 5px;
            margin: 0;
            text-align: center;
            font-size: 13px;
            font-weight: bold;
        }
        .box_content {
            background-color: #101010;
            padding: 12px;
            border: 1px solid rgba(10, 10, 10, 0.5);
            border-top: 0;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
            text-shadow: 0 1px 1px #000;
            color: #dadada;
        }
        .d-flex {
            display: flex;
        }
        .align-items-center {
            align-items: center;
        }
        .justify-content-between {
            justify-content: space-between;
        }
        .bg-secondary {
            background-color: #222;
        }
        .rounded {
            border-radius: 5px;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: #f01400;
        }
        .badge {
            display: inline-block;
            font-size: 75%;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            white-space: nowrap;
            vertical-align: baseline;
            border-radius: 0.375rem;
        }
        .bg-dark {
            background-color: #000;
        }
        .text-bold {
            font-weight: bold;
        }
        .fs-2 {
            font-size: 1.5em;
        }
        .ms-3 {
            margin-left: 1rem;
        }
        .fa-beat {
            animation: fa-beat 2s infinite;
        }

    .bdg {
    background-image: linear-gradient(to right, rgba(240,20,0, 0.1), rgba(240,20,0, 0.2), rgba(240,20,0, 0.1));
    color: rgba(72,255,0,1);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(240,20,0, 0.2);
    box-shadow: 0 0 2px rgba(240,20,0, 0.2);
    font-size: 16px;
}
.bdg2 {
    *background-image: linear-gradient(to right, rgba(240, 20, 0, 0.1), rgba(240, 20, 0, 0.2), rgba(240, 20, 0, 0.1));
    color: rgba(255, 0, 0, 1);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(240, 20, 0, 0.2);
    box-shadow: 0 0 2px rgba(240, 20, 0, 0.2);
    font-size: 16px;
.bg-custombg {
    padding: 5px 10px;
    margin: 2px 0;
}

.table td, .table th {
    padding: 10px;
    vertical-align: middle;
}

.tr-hover:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.zoom-sm-map {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.btn-custom {
    margin: 0 2px;
}

        @keyframes fa-beat {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }