/* Info tooltip styles */
.info-tooltip {
    position: relative;
    display: inline-block;
}

.info-tooltip .tooltip-text {
    visibility: hidden;
    width: 300px;
    background-color: #374151;
    color: white;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -150px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    border: 1px solid #4B5563;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

/* Result highlight */
.result-highlight {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Tip percentage buttons */
.tip-btn {
    background: #374151;
    border: 2px solid #4B5563;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.tip-btn:hover {
    border-color: #6B7280;
    background: #4B5563;
}

.tip-btn.active {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    border-color: #3B82F6;
    color: white;
}

/* Action buttons */
.action-btn {
    transition: all 0.2s;
}

.action-btn:hover {
    transform: translateY(-1px);
}

/* Share button animation */
.share-btn {
    background: #ccc;
    color: black;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(204, 204, 204, 0.3);
    background: #bbb;
}

.share-btn svg {
    color: black;
}

/* Copy result button */
.copy-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    transition: all 0.2s;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
} 