/* TrueNorth Bundle Dropdown */

.tn-bundle-header {
    cursor: pointer;
    padding: 14px 18px;
    margin: 12px 0;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.2s ease;
}

.tn-bundle-header:hover {
    background: #ededed;
}

.tn-bundle-header small {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.7;
}

.tn-bundle-header.active {
    background: #e8e8e8;
}

.tn-bundle-dropdown {
    padding: 10px 0 20px;
}