/* Custom scrollbar styles for a more immersive experience */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 100, 100, 0.4);
    border-radius: 4px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 100, 0.7);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 100, 100, 0.4) transparent;
}

html, body {
    overflow-y: overlay;
    overflow-x: hidden;
}

/* Close application button */
.close-app-btn {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.85);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-app-btn:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.close-app-btn:active {
    transform: scale(0.95);
}

.ib{
    display: inline-block;
    margin-right: 30px;
}

#creepers{
    position: relative;
    bottom: 25px;
}

.btn-asset{
    background-color: #885C00;
    color: white;
}

btn-asset:hover{
    background-color: #885C00;
    color: white;
}

.btn-outline-asset{
    background-color: white;
    color: #885C00;
    border-color: #885C00;
}

.btn-outline-asset:hover{
    background-color: #885C00;
    color: white;
}

#agents_list_container{
    height: 600px;
    margin-left: 3px;
    overflow-y: scroll;
}

.list-group-item{
    border-color: white;
}

.list-group-item.active{
    background-color: #FFC700;
    border-color: #FFC700;
}

.list-group-item.disabled{
    background-color: lightgrey;
    border-color: lightgrey;
}

hr.solid {
    border-top: 2px solid #999;
}

.card > img{
    height: 125px;
    object-fit: cover;
    object-position: 5% 0%;
}

.introjs-tooltip {
    font-size: 20px;
    min-width: 400px;
    max-width: 600px;
}

.introjs-tooltip-title {
    font-size: 22px;
    color: #0a41c9;
}

.introjs-hintReference > .introjs-tooltip{
    font-size: 16px;
}

.introjs-tooltip ul {
    margin-left: 8px;
    list-style-type: disc;
}

.nav-link {
    color: black;
    font-weight: bold;
}

.about-text {
    font-size: 18px;
}

.about-subsection {
    font-size: 26px;
    font-weight: bold;
    color: #0a41c9;
}
