
/* Monitor Cen - Style */
.mcn-price-info {
    position: relative;
    display: inline-block;
}

.mcn-price-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #007cba;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 10px;
    font-weight: bold;
    cursor: help;
    margin-left: 5px;
    vertical-align: middle;
}

.mcn-price-icon:hover {
    background: #005a87;
}

.mcn-tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: none;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

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

.mcn-tooltip.show {
    display: block;
}

.mcn-history-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #555;
}

.mcn-history-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mcn-price-change {
    font-weight: bold;
    margin-left: 5px;
}

.mcn-price-increase {
    color: #ff4444;
}

.mcn-price-decrease {
    color: #44ff44;
}

.mcn-lowest-price {
    font-size: 11px;
    color: #28a745;
    margin-top: 3px;
    display: block;
}
