.bg-technical {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.technical-data {
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.3s ease;
}

.technical-data:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.1);
}

.tooltipp {
    position: relative;
    display: inline-block;
    cursor: default;
}
.tooltipp::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: white;
    color: black;
    padding: var(--tooltip-padding, 5px 10px);
    border-radius: var(--tooltip-border-radius, 5px);
    font-size: var(--tooltip-font-size, 12px);
    white-space: nowrap;
    visibility: hidden;
    transition: var(--tooltip-transition, opacity 0.3s);
    top: var(--tooltip-distance, 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tooltipp.top::after {
    top: auto;
    bottom: calc(100% + var(--tooltip-distance, 10px));
    left: 50%;
    transform: translateX(-50%);
}

.tooltipp:hover::after {
    visibility: visible;
    opacity: 1;
}

.btn-technical {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background-color 0.3s, transform 0.3s;
}

.btn-technical:hover {
    /* background-color: var(--color-hover-blue); */
    color: #e6f7ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ic-technical {
    font-size: 13px;
    margin-right: 5px;
}

.text-technical {
    font-size: 13px;
}
