.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: .75em !important;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    background: #ccc;
    color: #444;
}

body .SharpActionView .container {
    max-width: initial;
}

body.entity-edit-project_user_statuses ul li.me-sm-auto,
body.entity-edit-menu_items ul li.me-sm-auto,
body.entity-edit-pages ul li.me-sm-auto,
body.entity-edit-promo ul li.me-sm-auto,
body.entity-edit-tournaments ul li.me-sm-auto,
body.entity-edit-matches ul li.me-sm-auto,
body.entity-edit-payment_fields ul li.me-sm-auto,
body.entity-edit-payment_list ul li.me-sm-auto,
body.entity-edit-collections ul li.me-sm-auto,
body.entity-edit-seo_texts ul li.me-sm-auto,
body.entity-edit-faq ul li.me-sm-auto,
body.entity-edit-news ul li.me-sm-auto {
    margin-right: inherit !important;
}
body.entity-edit-matches ul.nav-pills li:first-child {
    display: none;
}
body .SharpActionView button.SharpButton.btn.px-3.btn-outline-light.btn-lg {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
}
body .SharpActionView button.SharpButton.btn.px-3.btn-outline-light.btn-lg:hover {
   color: white;
}
body .badge.project-SOL {
    background-color: #FFD700;
}
body .badge.project-FRESH {
    background-color: #0bb80e;
    color: white;
}
body .badge.project-LEGZO {
    background-color: #2e0bb8;
    color: white;
}
body .badge.project-DRIP {
    background-color: #00FFFF;
    color: white;
}
body .badge.project-IZZI {
    background-color: #9400D3;
    color: white;
}
body .badge.project-JET {
    background-color: #4169E1;
    color: white;
}
body .badge.project-STARDA {
    background-color: #f87f7f;
    color: white;
}
body .badge.project-MONRO {
    background-color: #FFA500;
    color: white;
}
body .badge.project-1GO {
    background-color: #FF0000;
    color: white;
}

body .badge.currency-type {
    font-weight: bold;
    color: var(--bs-white);
}
body .badge.currency-type.crypto {
    background-color: var(--bs-orange);
}
body .badge.currency-type.fiat {
    background-color: var(--bs-success);
}
.multiselect .multiselect__content {
    overflow: auto;
    top: 100%;
}

.SharpForm__form-item--type-custom-editor textarea {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0.25rem;
}
.SharpForm__form-item--type-custom-editor textarea:focus {
    background-color: #fff;
    border-color: #80a6cd;
    box-shadow: 0 0 0 0.25rem rgba(0,76,155,.25);
    color: #152935;
    outline: 0;
}
.image-container {
    display: flex;
    gap: 10px;
}
.image-wrapper {
    position: relative;
    display: inline-block;
    z-index: 999;
}

.small-image {
    max-height: 27px;
    cursor: pointer;
}

.large-image {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 250%;
    z-index: 100;
    width: 450px;
    height: 450px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-wrapper:hover .large-image {
    visibility: visible;
    opacity: 1;
}


