/* Sensitive information styles */
.sensitive-info {
    display: none;
    margin-left: 5px;
}

.show-info-btn {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.show-info-btn:hover {
    color: #00a0d2;
}

/* Add animation for smooth appearance */
.sensitive-info.visible {
    display: inline;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
