.btn-refresh,
.btn-switch {
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
}

.text-deposit {
    color: #b7d030 !important;
}

.text-sale {
    color: #ff007f !important;
}

.past-event-card {
    border-radius: 20px;
    width: 280px;
    padding: 1px;
}

/* Tooltip */
.tooltip-custom {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-custom .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-custom .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip-custom:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text {
    font-size: 12px;
}
