.button-group button {
    display: inline;
    width: 49%;
}

.clickable-row {
    cursor: pointer;
    color: rgb(65, 166, 255);
}

.unclickable-row {
    pointer-events: none;
}

#backButtonWrapper {
    display: none;
    max-width: 100px;
    margin-top: 3px;
    margin-left: 3px;
    margin-right: 20px;
    float: left;
}

#backButtonWrapper .btn {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 7px 12px 6px;
}

#backButtonWrapper .btn+.btn {
    position: fixed;
    top: 0;
    z-index: 3;
}

.insideToolbar {
    margin-top: 3px;
    margin-right: 3px;
    margin-left: 3px;
}

.insideToolbar .btn {
    padding: 6px 12px 6px;
}

[tooltip]:after {
    /* needed - do not touch */
    content: attr(tooltip);
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    text-transform: none;
    padding: 5px 10px;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s;
    font-size: 12px;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0px 0px 4px #222;
    -webkit-box-shadow: 0px 0px 4px #222;
    box-shadow: 0px 0px 4px #222;
}

button[tooltip]:after {
    bottom: -60px;
    right: 10%;
    width: 80%;
    display: block;
    white-space: pre-wrap;
}
h2[tooltip]:after {
    position: relative;
    float: right;
    top: 28px;
    right: 60%;
    width: 40%;
}

h2[tooltip] {
    font-size: 12px;
    font-weight: bold;
}

div[tooltip]:after {
    width: 220px;
    top: -5px;
    right: 105%;
}

i[tooltip]:after {
    position: relative;
    top: 0px;
    left: 10px;
}

[tooltip]:hover:after {
    visibility: visible;
    opacity: 0.8;
}

[tooltip]:not([tooltip-persistent]):after {
    pointer-events: none;
}

.assign-btn {
    color: white !important;
    top: -1.5px;
    position: relative; 
    width: fit-content;
}

.assigned-to-link {
    color: #0096c0 !important;
}

.comment-section {
    position: fixed;
    bottom: 35px;
    width: 80vw !important;
    left: 10%;
    z-index: 102;
}

.ticket-image {
    max-height: 100px;
    margin: 5px;
    padding: 2px !important;
    width: auto !important;
    height: auto;
}

.ticket-images-container {
    display: flex;
    height: 120px;
    overflow: auto;
}

.ticket-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-images-container>a {
    margin: 5px;
}

.json-view span {
    margin-bottom: 0 !important;
}