@font-face {
    font-family: 'Arsenal';
    src: url("../fonts/Arsenal-Regular-y3m8yGC.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url("../fonts/Arsenal-Italic-oNh8RWr.ttf") format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url("../fonts/Arsenal-Bold-ZL436Gr.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arsenal';
    src: url("../fonts/Arsenal-BoldItalic-3k0772-.ttf") format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --p-color:                      #f0f8ff;
    --white-color:                  #ffffff;
    --h-color:                      #F2CC8F;
    --primary-color:                #E07A5F;
    --secondary-color:              #F2CC8F;
    --link-normal-color:            #F2CC8F;
    --section-bg-color:             #f0f8ff;
    --custom-btn-bg-color:          #008F0F;
    --custom-btn-bg-hover-color:    #2061c3;
    --dark-color:                   #000000;
    --link-hover-color:             #f3c164;

    --body-font-family:             'Arsenal';
    --heading-font-family:          'Arsenal';

    --h1-font-size:                 36px;
    --h2-font-size:                 28px;
    --h3-font-size:                 26px;
    --h4-font-size:                 24px;
    --h5-font-size:                 20px;
    --h6-font-size:                 18px;
    --p-font-size:                  18px;
    --menu-font-size:               16px;
    --btn-font-size:                16px;

    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;

    --font-weight-normal:           400;
    --font-weight-medium:           400;
    --font-weight-bold:             700;
}
* {
    box-sizing: border-box
}

body {
    background-image: url("../images/globe-h-mk2nwQ6.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--body-font-family), sans-serif;
    font-size: var(--p-font-size);
    line-height: 1.6;
    color: var(--p-color);
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    font-synthesis: none;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

body.error-page
{
    background-image: url("../images/universe-yRSZ5Kj.webp");
}

/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--font-weight-bold);
    color: var(--h-color);
    letter-spacing: -1px;
}

h1 {
    font-size: var(--h1-font-size);
    text-align: center;
}

h2 {
    font-size: var(--h2-font-size);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    min-height: 0.5rem;
    text-indent: 1.75em;
}

p *{
    text-indent: 0;
}

p:last-child
{
    margin: 0;
}

ul {
    padding-left: 1.2rem; /* місце під маркер */
}

li {
    list-style-position: outside;
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

li a {
    display: inline;
    overflow-wrap: anywhere; /* головне */
    word-break: break-word;  /* fallback */
}

li > p
{
    text-indent: 0;
}

a {
    display: inline-block;
    color: var(--link-normal-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

pre{
    background-color: #7b2c2c;
    display: block;
    padding: 10px;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    text-wrap: auto;
}

blockquote {
    border-left: 3px solid #7B2C2CCC;
    padding-left: .75rem;
    margin-left: 0;
    color: #555;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background-color: #7b2c2c;
    margin-bottom: 10px;
}

table td,
table th {
    border: 0;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: .5rem .75rem;
}

/* прибрати зайві лінії справа і знизу */
table tr td:last-child,
table tr th:last-child {
    border-right: 0;
}

table tr:last-child td,
table tr:last-child th {
    border-bottom: 0;
}

table th {
    font-weight: 600;
    background-color: rgba(0,0,0,.3);
}

table th *{
    font-weight: 600;
}


header
{
    top: 25px;
    position: absolute;
    height: 80px;
    width: 100%;
    z-index: 100;
    background: none;
}

header a, header span
{
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--h3-font-size);
}

header a:hover {
    text-decoration: underline;
}

header .container
{
    border-radius: var(--border-radius-large);
    padding: 15px 25px;

    /*max-height: 80px;*/
    background: rgba(14, 40, 79, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow:
            0 12px 30px rgba(0,0,0,0.35),
            0 1px 0 rgba(255,255,255,0.06) inset;
}

.header-row
{
    position: relative;
    z-index: 2;
}

main
{
    padding-top: 105px;/* height of header + 25px padding*/
    height: 100vh;
    overflow: visible;
    overflow-y: auto;
    text-wrap: auto;
}
.content-container
{
    height: calc(100vh - 105px);
    width: 100%;
    padding: 10px 30px 20px;
}

.flag-ua {
    position: absolute;
    z-index: -10;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    height: 100%;
    width: 170px;
    backdrop-filter: blur(6px);
    background: linear-gradient(to bottom, rgba(0, 87, 183, 0.7) 50%, rgba(255, 215, 0, 0.7) 50%);
    clip-path: polygon(
            30% 0,
            100% 0,
            70% 100%,
            0 100%
    );
}

header a
{
    color: var(--p-color);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
}

.side-menu-button > a
{
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    cursor: pointer;
}

@media screen and (min-width: 991px) {
    .header-in-menu {
        display: none !important;
    }
}
@media screen and (max-width: 990px) {
    .header-in-head {
        display: none !important;
    }
    .flag-ua {
        border-radius: 100px;
        width: 130px;
        left: unset;
        clip-path: unset;
    }
    .side-menu-button > a
    {
        background: rgba(14, 40, 79, 0.92);
    }
}

.offcanvas {
    background-color: rgba(0, 0, 0, 0.6);
    --bs-offcanvas-width: 340px;
    width: 340px;
    margin: 20px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    border: 1px solid rgba(255,255,255,0.08);
}

.offcanvas-body {
    padding: 30px;
}

.offcanvas.offcanvas-end {
    border-left: 0;
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
    transform: rotate(180deg);
}

.offcanvas-icon {
    font-size: var(--h3-font-size);
    color: var(--white-color);
    margin-left: 15px;
}

.offcanvas nav ul {
    margin: 0;
    padding: 0;
}

.offcanvas nav ul li {
    list-style: none;
    display: block;
}

.offcanvas nav ul li a {
    font-family: var(--heading-font-family), sans-serif;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-medium);
    color: var(--white-color);
    display: inline-block;
    margin: 5px 0;
}

.offcanvas nav ul li a:is(:hover, .active) {
    color: var(--link-hover-color);
}

.offcanvas nav ul li a.active-item
{
    color: var(--primary-color);
}

.centered-container {
    margin-right: auto;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 100%;
}

.error-page-title {
    color: var(--primary-color);
    font-size: 100px;
}

.error-page-title + h3 {
    color: var(--secondary-color);
}

.round-panel
{
    border-radius: 20px;
    background-color: rgba(0,0,0, 0.8);
    padding: 30px;
}

.info-panel
{
    border-radius: 20px;
    background-color: #0C0E25EE;
    padding: 30px;
}

.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    transition: all 0.3s;
    padding: 6px 18px;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-hover-color);
    color: var(--secondary-color);
}

.custom-border-btn:hover {
    background: var(--secondary-color);
    border-color: transparent;
    color: var(--dark-color);
}

.page-title {
    color: var(--white-color);
    text-align: center;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
/* ****************** */
.custom-form .form-control {
    border-radius: var(--border-radius-large);
    border-width: 2px;
    box-shadow: none;
    color: var(--p-color);
    margin-bottom: 5px;
    padding: 5px 5px 5px 20px;
    outline: none;
    background-color: #1f256b;
    border-color: var(--custom-btn-bg-hover-color);
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
    border-color: var(--primary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-floating > label {
    padding: .75rem .75rem .75rem 20px;
    color: var(--secondary-color);
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--heading-font-family), sans-serif;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
    padding: 10px 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
}

.custom-form .form-check-label {
    color: var(--p-color);
}

.contact-form .form-floating > textarea {
    border-radius: var(--border-radius-medium);
    height: 110px;
}

small {
    color: var(--primary-color);
    display: block;
    font-size: var(--btn-font-size);
    font-style: italic;
    position: relative;
    padding-left: 75px;
}

small::before {
    content: "";
    background-color: var(--white-color);
    width: 50px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(-50%, 0);
}

select
{
    margin-left: 5px;
    min-width: 150px;
}

input[type="file"]::file-selector-button {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 4px 18px 8px;
    margin-right: 12px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(0,0,0,0.4);
    color: var(--p-color);
    transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

input[type="file"]::file-selector-button:hover,
input[type="file"]:hover::file-selector-button {
    color: var(--dark-color);
    border-color: rgba(255,255,255,0.7);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.back-link img {
    height: 26px;
    transition: transform .15s ease;
}

.back-link:hover img {
    transform: translateX(-3px);
}

.sys-info-text {
    font-size: 24px;
    color: var(--white-color);
    text-align: center;
}

.post-short {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.post-short-title,
.post-full-title
{
    font-size: var(--h3-font-size);
    font-weight: bold;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: var(--secondary-color);
    text-decoration: none;
}

.post-short-media {
    margin: 0;
    flex: 0 0 auto;
}

.post-short-media img {
    display: block;
    width: 120px;
    height: auto;
}

.post-short-body {
    /* щоб заголовок/текст нормально переносились */
    min-width: 0;
    width: 100%;
}
.post-id-chips
{
    border-radius: 5px;
    background-color: var(--dark-color);
    padding: 2px;
}

.post-sticky-label
{
    border-radius: 5px;
    background-color: #13c4ca;
    padding: 2px;
    color: rgba(0, 0, 0, 0.8);
}

.post-short-text
{
    font-size: var(--h5-font-size);
}

.post-link
{
    color: var(--secondary-color);
}

.post-link:hover
{
    color: var(--primary-color);
}

.avatar-icon
{
    box-sizing: content-box;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    flex: 0 0 auto;
    margin-bottom: 10px;
}

.avatar-icon > img
{
    height: 120px;
    max-width: 120px;
    object-fit: contain;
    display: block;
}
/* Slide gallery /*

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.slide-item {
    display: none;
}

/*!* Fading animation *!*/
.fade-slides {
    animation-name: fade-slides;
    animation-duration: 1.5s;
}

@keyframes fade-slides {
    from {opacity: .4}
    to {opacity: 1}
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    bottom: 10px;
    left: 50%;
    right: 50%;
    width: fit-content;
    text-align: center;
    white-space: nowrap;
    border-radius: 30px;
    transform: translateX(-50%);
}

.gallery-img
{
    max-height: 70vh;
    max-width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Next & previous buttons */
.prev, .next {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -22px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    cursor: pointer;
}

/* Position the "next button" to the right */
.next {
    right: 0;
}
.prev
{
    left:0;
}
.next > span
{
    margin-left: 2px;
}
.prev > span
{
    margin-left: -2px;
}

/* The dots/bullets/indicators */
.gallery-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.gallery-dot.active {
    background-color: var(--primary-color);
}
.gallery-dot:hover:not(.active) {
    background-color: var(--primary-color);
    opacity: 0.6;
}

#attachments
{
    scroll-margin-top: 1rem;
}

#attachments > span
{
    color: var(--secondary-color);
}

.file-extension-item
{
    border-radius: 5px;
    border: 2px solid var(--custom-btn-bg-hover-color);
    padding: 2px;
    margin-bottom: 2px;
}

.post-inner-image
{
    display: block;
    max-width: min(80%, 500px);
    height: auto;
    margin: 0.75rem auto; /* по центру */
}

.post-full-content
{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    line-height: 1.6;
}


.upload-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-overlay__panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(6px);
}

.upload-overlay__spinner {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.95);
    animation: upload-spin 0.9s linear infinite;
}

.upload-overlay__text {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
}

@keyframes upload-spin {
    to { transform: rotate(360deg); }
}

/* Tip-tap */
span.text-small {
    font-size: 0.85em;
    opacity: 0.9;
}

.fixed-form > textarea.form-control,
.fixed-form div.tiptap-editor.form-control
{
    min-height: 150px;
    border-radius: 20px;
}

.fixed-form div.tiptap-editor.form-control
{
    background-color: #0c0e25;
}

.fixed-form div.tiptap-editor.form-control>div.tiptap.ProseMirror,
.fixed-form div.tiptap-editor.form-control>div.tiptap.ProseMirror *
{
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
}
.fixed-form div.tiptap-editor.form-control>div.tiptap.ProseMirror h2,
.fixed-form div.tiptap-editor.form-control>div.tiptap.ProseMirror h3,
.fixed-form div.tiptap-editor.form-control>div.tiptap.ProseMirror h4
{
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
}

.fixed-form > .form-control
{
    color: var(--p-color);
    padding: 10px 5px 10px 20px;
    border-radius: 20px;
}
.fixed-form > .form-control::placeholder
{
    color: var(--p-color);
}

.fixed-form > label
{
    padding-left: 20px;
    color: var(--secondary-color);
}

.fixed-form > select.form-control
{
    appearance: none !important;
    -webkit-appearance: none !important; /* Chrome, Safari, Opera */
    -moz-appearance: none !important;    /* Firefox */
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpolyline points='1,1 6,6 11,1' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 32px;
}

.round-40
{
    border-radius: 40px;
}

.list-group
{
    border-radius: 20px;
}

.list-group > .list-group-item
{
    background-color: #1f256b;
    color: var(--white-color);
}

.list-group > .list-group-item > span
{
    color: var(--p-color);
}

.attachment-container a
{
    color: var(--secondary-color);
}

.post-hidden-type
{
    background-color: #ff4444;
    color: white;
}

.user-panel
{
    border-radius: 20px;
    padding: 30px;
    color: #FFFFFF;
    background-color: #0e284f;
}

.post-panel
{
    border-radius: 20px;
    background-color: #530202;
    padding: 30px;
    color: #FFFFFF;
}

.post-admin-tabs
{
    border-color: #354181;
}

.post-admin-tabs .nav-link
{
    border-color: #222222;
    background-color: #000000;/* inactive tabs */
    color: #cccccc;
}
.post-admin-tabs .nav-link.active
{
    border-color: #313b71;
    background-color: #313b71;
    color: #FFFFFF;
}

.tab-pane.active
{
    background-color: #313b71;
}

.artifacts-min-h
{
    min-height: 241px;
}

.btn-group
{
    background-color: #000000;
}

.btn-group > button
{
    color: var(--secondary-color);
}

.btn-group.danger-group
{
    background-color: #dc3545;
}
.btn-group.danger-group *
{
    color: #000000;
    font-weight: bold;
}
.btn-group.danger-group *:hover
{
    background-color: #d17681;
    color: rgba(57, 9, 140, 0.99);
}

.attachment-container
{
    margin-top: 1rem;
    width: 100%;
    background-color: #24242b;
    padding: 5px 5px 1rem;
    border-radius: 8px;
}

.attachment-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;       /* 🔥 ключове для flex */
    flex: 1 1 auto;     /* займати доступний простір */
}

/* AI usage colors start*/
.ai-usage-human /* повністю людина */
{
    border-radius: 5px;
    background-color: #5d9904; /* базовий зелений */
    padding: 2px;
    color: black;
}

.ai-usage-with-ai /* незначна допомога ШІ */
{
    border-radius: 5px;
    background-color: #7f9b0c; /* оливково-зелений */
    padding: 2px;
    color: black;
}

.ai-usage-translate-ai /* суттєва частина тексту згенерована ШІ */
{
    border-radius: 5px;
    background-color: #a8a514; /* жовто-оливковий */
    padding: 2px;
    color: black;
}

.ai-usage-image-ai /* зображення згенеровані ШІ */
{
    border-radius: 5px;
    background-color: #c9ad1f; /* теплий жовтий */
    padding: 2px;
    color: black;
}

.ai-usage-text-ai /* перекладено за допомогою ШІ */
{
    border-radius: 5px;
    background-color: #e0a828; /* жовто-помаранчевий */
    padding: 2px;
    color: black;
}

.ai-usage-hard-ai /* більше 90% контенту згенеровано ШІ */
{
    border-radius: 5px;
    background-color: #f29a31; /* світло-помаранчевий */
    padding: 2px;
    color: black;
}

.ai-usage-full-ai /* повністю згенеровано ШІ */
{
    border-radius: 5px;
    background-color: #FF803B; /* фінальний */
    padding: 2px;
    color: black;
}
/* AI usage colors end*/

.tag-cloud
{
    position: sticky;
}

.chips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    width: fit-content;
    border-radius: 20px;
    background-color: #0C0E25EE;
    padding: 5px;
}

.chip{
    padding:3px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    font-size:14px;
    text-decoration:none;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
    line-height: 1.2;
    color: var(--secondary-color);
}

.chip:hover:not(.disabled):not(.active){
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.24);
    transform: translateY(-1px);
    box-shadow:
            0 8px 22px rgba(0,0,0,.32),
            0 0 0 1px rgba(255,255,255,.06) inset;
}

.chip.disabled{
    opacity:.5;
}

.chip.active
{
    font-weight: bold;
    background:rgba(255,255,255,.3)
}

.chip:focus-visible{
    outline: 2px solid rgba(255, 200, 80, .85);
    outline-offset: 2px;
}

.role-regular-user
{
    border-radius: 5px;
    background-color: #0f5132;
    padding: 2px;
}

.role-moderator
{
    border-radius: 5px;
    background-color: #997404;
    padding: 2px;
}

.role-admin
{
    border-radius: 5px;
    background-color: #fb3838;
    padding: 2px;
}

.role-inactive-user
{
    border-radius: 5px;
    background-color: #d63384;
    padding: 2px;
}