body {
    background-color: #bed1d9;
}

/* Action button icon tooltips */
.action-btn-icon {
    position: relative;
}

.action-btn-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #333;
    color: white;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.action-btn-icon:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.1rem;
    border: 5px solid transparent;
    border-top-color: #333;
    pointer-events: none;
    z-index: 1000;
}
