/* Стили для компонента умных тултипов с датами */

.date-tooltip-container {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.date-tooltip-container.align-baseline {
    align-items: baseline;
}

.date-tooltip-popup {
    display: none !important;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    min-width: auto;
    text-align: left;
}

.date-tooltip-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-tooltip-icon-wrapper {
    background: rgba(168, 213, 250, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.date-tooltip-icon-wrapper.updated {
    background: rgba(255, 218, 106, 0.1);
}

.date-tooltip-icon {
    color: #a8d5fa;
    width: 14px;
    text-align: center;
    display: block;
}

.date-tooltip-icon.updated {
    color: #ffda6a;
}

.date-tooltip-label {
    font-size: 0.75rem;
    opacity: 0.6;
    line-height: 1.2;
}

.date-tooltip-value {
    font-weight: 500;
    font-size: 0.85rem;
}

.date-tooltip-divider {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tooltip-arrow {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(33, 37, 41, 0.95);
    font-size: 18px;
}
